-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
48 lines (35 loc) · 1.46 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
45
46
47
48
organization := "org.eigengo"
name := "phillyete2014"
version := "1.0.0"
scalaVersion := "2.10.4"
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-language:_",
"-target:jvm-1.7",
"-encoding", "UTF-8"
)
resolvers ++= Seq(
"Spray Releases" at "http://repo.spray.io",
"Spray Releases" at "http://repo.spray.io"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.2",
"com.typesafe.akka" %% "akka-slf4j" % "2.3.2",
"io.spray" % "spray-routing" % "1.3.0",
"io.spray" % "spray-client" % "1.3.0",
"io.spray" %% "spray-json" % "1.2.3",
"org.eigengo.monitor" % "agent-akka" % "0.4-SNAPSHOT",
"org.eigengo.monitor" % "output-statsd" % "0.4-SNAPSHOT",
"io.spray" % "spray-testkit" % "1.3.0" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.2" % "test",
"org.specs2" %% "specs2" % "2.3.11" % "test"
)
parallelExecution in Test := false
transitiveClassifiers := Seq("sources")
initialCommands in console := "import org.eigengo.phillyete._,akka.actor._"
initialCommands in (Test, console) <<= (initialCommands in console)(_ + ",akka.testkit._")
javaOptions in run += "-javaagent:" + System.getProperty("user.home") + "/.ivy2/cache/org.aspectj/aspectjweaver/jars/aspectjweaver-1.7.3.jar"
fork in run := true
connectInput in run := true