Files
WordCount/build.sbt
TM-Squared 50235b051f Wordcount fonctionnel
- Timeout to permit to worker to join cluster
- wordcount
- sort
2025-02-03 18:07:20 +01:00

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",
)
)