|
@@ -1,5 +1,7 @@
|
|
|
-val akkaV = "2.5.1"
|
|
|
-val akkaHttpV = "10.0.6"
|
|
|
+enablePlugins(JavaAppPackaging)
|
|
|
+
|
|
|
+val akkaVersion = "2.5.6"
|
|
|
+val akkaHttpVersion = "10.0.10"
|
|
|
|
|
|
organization := "com.typesafe.akka"
|
|
|
|
|
@@ -7,20 +9,18 @@ name := "akka-http-benchmark"
|
|
|
|
|
|
version := "0.0.1-SNAPSHOT"
|
|
|
|
|
|
-scalaVersion := "2.12.2"
|
|
|
+scalaVersion := "2.12.3"
|
|
|
|
|
|
resolvers += "Akka Snapshot Repository" at "http://repo.akka.io/snapshots/"
|
|
|
|
|
|
libraryDependencies ++= Seq(
|
|
|
- "com.typesafe.akka" %% "akka-http" % akkaHttpV,
|
|
|
- "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
|
|
|
- "com.typesafe.akka" %% "akka-stream" % akkaV,
|
|
|
- "mysql" % "mysql-connector-java" % "5.1.38",
|
|
|
- "com.zaxxer" % "HikariCP" % "2.5.1",
|
|
|
+ "com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
|
|
|
+ "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
|
|
|
+ "com.typesafe.akka" %% "akka-stream" % akkaVersion,
|
|
|
+ "mysql" % "mysql-connector-java" % "5.1.44",
|
|
|
+ "com.zaxxer" % "HikariCP" % "2.7.2",
|
|
|
"org.scalatra.scalate" %% "scalate-core" % "1.8.0",
|
|
|
- "org.scalatest" %% "scalatest" % "3.0.3" % "test"
|
|
|
+ "org.scalatest" %% "scalatest" % "3.0.4" % "test"
|
|
|
)
|
|
|
|
|
|
-assemblyJarName in assembly := "akka-http-benchmark.jar"
|
|
|
-
|
|
|
-mainClass in assembly := Some("com.typesafe.akka.http.benchmark.Main")
|
|
|
+mainClass in Compile := Some("com.typesafe.akka.http.benchmark.Main")
|