pekko/akka-samples/akka-sample-fsm-java-lambda/build.sbt
Patrik Nordwall 9cd5046e1f bump version to 2.5-SNAPSHOT (#21946)
* project/scripts/find-replace 2.4-SNAPSHOT 2.5-SNAPSHOT
2016-12-05 10:43:29 +01:00

19 lines
710 B
Scala

name := "akka-sample-fsm-java-lambda"
version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
javacOptions in compile ++= Seq("-encoding", "UTF-8", "-source", "1.8", "-target", "1.8", "-Xlint")
javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT",
"com.typesafe.akka" %% "akka-testkit" % "2.5-SNAPSHOT" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test")
licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0")))