Skip to content

Instantly share code, notes, and snippets.

@ihrimech
Last active May 15, 2019 13:17
Show Gist options
  • Save ihrimech/8208b6e45419dca4dc970f18235dd9fe to your computer and use it in GitHub Desktop.
Save ihrimech/8208b6e45419dca4dc970f18235dd9fe to your computer and use it in GitHub Desktop.
sbt minimal file for an Akka application
name := "akka-quickstart-scala"
version := "1.0"
scalaVersion := "2.12.6"
lazy val akkaVersion = "2.5.22"
libraryDependencies ++= Seq(
// la seule dépendance dont on aura besoin pour l'instant sera celle du core d'Akka
"com.typesafe.akka" %% "akka-actor" % akkaVersion
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment