aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorBjørn Madsen <bm@aeons.dk>2017-08-07 22:21:52 +0200
committerBjørn Madsen <bm@aeons.dk>2017-08-07 22:21:52 +0200
commite79d090ed707942f534db98abb1a1754c3584329 (patch)
tree5caeba512fefa6a13528e3e779d594a01e760d26 /build.sbt
parent461ed700256e33aea7fb7b033e23698e8239fd09 (diff)
downloadsttp-e79d090ed707942f534db98abb1a1754c3584329.tar.gz
sttp-e79d090ed707942f534db98abb1a1754c3584329.tar.bz2
sttp-e79d090ed707942f534db98abb1a1754c3584329.zip
Clean up build file
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 4 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index 85d185e..a68dd25 100644
--- a/build.sbt
+++ b/build.sbt
@@ -32,7 +32,7 @@ val commonSettings = Seq(
val akkaHttpVersion = "10.0.9"
val akkaHttp = "com.typesafe.akka" %% "akka-http" % akkaHttpVersion
-
+val circeVersion = "0.8.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.0.3"
lazy val rootProject = (project in file("."))
@@ -47,6 +47,7 @@ lazy val rootProject = (project in file("."))
monixAsyncHttpClientHandler,
catsAsyncHttpClientHandler,
okhttpClientHandler,
+ circe,
tests
)
@@ -131,8 +132,8 @@ lazy val circe: Project = (project in file("circe"))
.settings(
name := "circe",
libraryDependencies ++= Seq(
- "io.circe" %% "circe-core" % "0.8.0",
- "io.circe" %% "circe-parser" % "0.8.0",
+ "io.circe" %% "circe-core" % circeVersion,
+ "io.circe" %% "circe-parser" % circeVersion,
scalaTest % "test"
)
) dependsOn core