16 lines
464 B
Scala
16 lines
464 B
Scala
ThisBuild / version := "0.1.0-SNAPSHOT"
|
|
|
|
ThisBuild / scalaVersion := "3.3.5"
|
|
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
name := "Wordcount",
|
|
version := "0.1",
|
|
libraryDependencies ++= Seq(
|
|
"com.typesafe.akka" %% "akka-actor-typed" % "2.8.8",
|
|
"com.typesafe.akka" %% "akka-cluster-typed" % "2.8.8",
|
|
"com.typesafe.akka" %% "akka-serialization-jackson" % "2.8.8",
|
|
"ch.qos.logback" % "logback-classic" % "1.5.16",
|
|
)
|
|
)
|