pekko/akka-samples/akka-sample-java8/build.sbt
2014-01-20 12:00:13 +01:00

17 lines
561 B
Scala

name := "akka-sample-java8"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.10.3"
compileOrder := CompileOrder.ScalaThenJava
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3-SNAPSHOT",
"com.typesafe.akka" %% "akka-testkit" % "2.3-SNAPSHOT" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test")