Skip to content

Instantly share code, notes, and snippets.

@chris-zen
Last active May 11, 2016 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-zen/90ed002daabef97b62e4c41fc2cdc126 to your computer and use it in GitHub Desktop.
Save chris-zen/90ed002daabef97b62e4c41fc2cdc126 to your computer and use it in GitHub Desktop.
javaOptions in run ++= Seq(
"-Xms128m"
, "-Xmx1024m"
// , "-Djava.library.path=./target/native"
)
// Akka dependencies
libraryDependencies ++= {
val akkaVersion = "2.4.1"
val akkaHttpVersion = "2.4.2-RC2"
Seq(
//, "com.typesafe.akka" %% "akka-actor" % akkaVersion
//, "com.typesafe.akka" %% "akka-persistence" % akkaVersion
//, "com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion
//, "com.typesafe.akka" %% "akka-remote" % akkaVersion
//, "com.typesafe.akka" %% "akka-streams" % akkaVersion
//, "com.typesafe.akka" %% "akka-cluster" % akkaVersion
//, "com.typesafe.akka" %% "akka-cluster-sharding" % akkaVersion
//, "com.typesafe.akka" %% "akka-cluster-metrics" % akkaVersion
//, "com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion
// needed by akka-cluster-metrics
//, "io.kamon" % "sigar-loader" % "1.6.6-rev002"
// needed by akka-persistence
//, "org.iq80.leveldb" % "leveldb" % "0.7"
//, "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
//, "com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment