aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt11
1 files changed, 11 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 332e80b..85d185e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -126,6 +126,17 @@ lazy val okhttpClientHandler: Project = (project in file(
)
) dependsOn core
+lazy val circe: Project = (project in file("circe"))
+ .settings(commonSettings: _*)
+ .settings(
+ name := "circe",
+ libraryDependencies ++= Seq(
+ "io.circe" %% "circe-core" % "0.8.0",
+ "io.circe" %% "circe-parser" % "0.8.0",
+ scalaTest % "test"
+ )
+ ) dependsOn core
+
lazy val tests: Project = (project in file("tests"))
.settings(commonSettings: _*)
.settings(