aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorZach Smith <zach@driver.xyz>2017-04-04 16:55:46 -0700
committerZach Smith <zach@driver.xyz>2017-04-05 13:58:55 -0700
commit686d4e2845bd6335d998dbc33f6a7d1ae49191a2 (patch)
treeb0f2b3381768856a6e5cb6dc1ecc4b595d22ae94 /build.sbt
parente8d848a932f33e847147708543f6039573881d16 (diff)
downloaddriver-core-686d4e2845bd6335d998dbc33f6a7d1ae49191a2.tar.gz
driver-core-686d4e2845bd6335d998dbc33f6a7d1ae49191a2.tar.bz2
driver-core-686d4e2845bd6335d998dbc33f6a7d1ae49191a2.zip
Set akka-http version to 10.0.5v0.11.0
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt28
1 files changed, 13 insertions, 15 deletions
diff --git a/build.sbt b/build.sbt
index 09bd2fb..2cfcac3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,26 +1,24 @@
import sbt._
import Keys._
-lazy val akkaHttpV = "2.4.8"
+lazy val akkaHttpV = "10.0.5"
lazy val core = (project in file("."))
.settings(name := "core")
.settings(
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-experimental" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-jackson-experimental" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
- "org.scalatest" % "scalatest_2.11" % "2.2.6" % "test",
- "org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
- "org.mockito" % "mockito-core" % "1.9.5" % "test",
- "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
- "com.typesafe.slick" %% "slick" % "3.1.1",
- "com.typesafe" % "config" % "1.2.1",
- "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
- "ch.qos.logback" % "logback-classic" % "1.1.3",
- "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.7.1"
+ "com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
+ "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
+ "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
+ "org.scalatest" % "scalatest_2.11" % "2.2.6" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
+ "org.mockito" % "mockito-core" % "1.9.5" % "test",
+ "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
+ "com.typesafe.slick" %% "slick" % "3.1.1",
+ "com.typesafe" % "config" % "1.2.1",
+ "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
+ "ch.qos.logback" % "logback-classic" % "1.1.3",
+ "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.7.1"
))
.gitPluginConfiguration
.settings(lintingSettings ++ formatSettings)