2014-02-21 12:43:30 +01:00
|
|
|
name := "akka-docs-java-lambda"
|
2013-12-11 14:53:41 +01:00
|
|
|
|
2014-03-07 13:43:05 +01:00
|
|
|
version := "2.4-SNAPSHOT"
|
2013-12-11 14:53:41 +01:00
|
|
|
|
2014-03-07 13:15:17 +01:00
|
|
|
scalaVersion := "2.10.4"
|
2013-12-11 14:53:41 +01:00
|
|
|
|
|
|
|
|
compileOrder := CompileOrder.ScalaThenJava
|
|
|
|
|
|
|
|
|
|
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint")
|
|
|
|
|
|
|
|
|
|
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
|
|
|
|
|
|
|
|
|
|
libraryDependencies ++= Seq(
|
2014-03-07 13:43:05 +01:00
|
|
|
"com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
|
|
|
|
|
"com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test",
|
2013-12-11 14:53:41 +01:00
|
|
|
"junit" % "junit" % "4.11" % "test",
|
|
|
|
|
"com.novocode" % "junit-interface" % "0.10" % "test")
|