-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
44 lines (35 loc) · 1.25 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import sbt._
import Keys._
import sbt.Keys._
import sbtassembly.Plugin._
import AssemblyKeys._
import com.typesafe.sbt.SbtStartScript
name := """protectedchat-server"""
version := "1.0"
scalaVersion := "2.10.4"
scalacOptions ++= Seq("-unchecked", "-deprecation","-feature")
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
"mandubian maven bintray" at "http://dl.bintray.com/mandubian/maven",
"spray" at "http://repo.spray.io/"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.0",
"com.typesafe.akka" %% "akka-testkit" % "2.3.0",
"com.github.mauricio" %% "mysql-async" % "0.2.6",
"io.spray" %% "spray-json" % "1.2.5",
"com.typesafe" % "config" % "1.0.2",
"org.scalatest" % "scalatest_2.10" % "1.9.1" % "test",
"io.spray" % "spray-can" % "1.3.1",
"io.spray" % "spray-http" % "1.3.1",
"io.spray" % "spray-httpx" % "1.3.1",
"io.spray" % "spray-util" % "1.3.1",
"io.spray" % "spray-client" % "1.3.1",
"io.spray" % "spray-testkit" % "1.3.1",
"io.spray" % "spray-routing" % "1.3.1",
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"org.mockito" % "mockito-all" % "1.9.5" % "test"
)
seq(SbtStartScript.startScriptForClassesSettings: _*)
assemblySettings
test in assembly := {}