From 060cd745cdaa72ef433720fa09845c1132a516d8 Mon Sep 17 00:00:00 2001 From: Bjørn Madsen Date: Sun, 6 Aug 2017 00:28:33 +0200 Subject: Add circe support module --- build.sbt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'build.sbt') 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( -- cgit v1.2.3