21 lines
654 B
Plaintext
21 lines
654 B
Plaintext
|
name := "akka-quickstart-java"
|
||
|
|
||
|
version := "1.0"
|
||
|
|
||
|
scalaVersion := "2.13.1"
|
||
|
|
||
|
lazy val akkaVersion = "2.6.19"
|
||
|
|
||
|
// Run in a separate JVM, to make sure sbt waits until all threads have
|
||
|
// finished before returning.
|
||
|
// If you want to keep the application running while executing other
|
||
|
// sbt tasks, consider https://github.com/spray/sbt-revolver/
|
||
|
fork := true
|
||
|
|
||
|
libraryDependencies ++= Seq(
|
||
|
"com.typesafe.akka" %% "akka-actor-typed" % akkaVersion,
|
||
|
"com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion,
|
||
|
"ch.qos.logback" % "logback-classic" % "1.2.3",
|
||
|
"junit" % "junit" % "4.13.1" % Test,
|
||
|
"com.novocode" % "junit-interface" % "0.11" % Test)
|