build.sbt 763 B

1234567891011121314151617181920212223242526
  1. enablePlugins(JavaAppPackaging)
  2. val akkaVersion = "2.5.7"
  3. val akkaHttpVersion = "10.0.11"
  4. organization := "com.typesafe.akka"
  5. name := "akka-http-benchmark"
  6. version := "0.0.1-SNAPSHOT"
  7. scalaVersion := "2.12.4"
  8. resolvers += "Akka Snapshot Repository" at "http://repo.akka.io/snapshots/"
  9. libraryDependencies ++= Seq(
  10. "com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
  11. "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
  12. "com.typesafe.akka" %% "akka-stream" % akkaVersion,
  13. "mysql" % "mysql-connector-java" % "5.1.45",
  14. "com.zaxxer" % "HikariCP" % "2.7.4",
  15. "org.scalatra.scalate" %% "scalate-core" % "1.8.0",
  16. "org.scalatest" %% "scalatest" % "3.0.4" % "test"
  17. )
  18. mainClass in Compile := Some("com.typesafe.akka.http.benchmark.Main")