Last active
May 11, 2016 06:04
-
-
Save chris-zen/90ed002daabef97b62e4c41fc2cdc126 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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