2014-03-17 14:56:22 +01:00
|
|
|
name := "akka-supervision-java-lambda"
|
|
|
|
|
|
|
|
|
|
version := "1.0"
|
|
|
|
|
|
2015-09-07 10:26:51 +02:00
|
|
|
scalaVersion := "2.11.7"
|
2014-03-17 14:56:22 +01:00
|
|
|
|
2015-05-05 16:44:49 +02:00
|
|
|
javacOptions in compile ++= Seq("-encoding", "UTF-8", "-source", "1.8", "-target", "1.8", "-Xlint")
|
|
|
|
|
|
|
|
|
|
javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8", "-Xdoclint:none")
|
2014-03-17 14:56:22 +01:00
|
|
|
|
|
|
|
|
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
|
|
|
|
|
|
|
|
|
|
libraryDependencies ++= Seq(
|
2014-03-19 09:14:54 +01:00
|
|
|
"com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
|
|
|
|
|
"com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test",
|
2015-05-08 16:35:29 +02:00
|
|
|
"junit" % "junit" % "4.12" % "test",
|
|
|
|
|
"com.novocode" % "junit-interface" % "0.11" % "test")
|