aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-02-09 21:54:46 +0100
committerFelix Mulder <felix.mulder@gmail.com>2017-02-13 10:53:45 +0100
commit43f1d800b92241d86703b5518aab171e039fde4e (patch)
tree8bcf88b79312ac5cff3fe5d1504d72af3d2281d2 /project
parent3f06fe9cc2debaacbb889e33c7339457fc5355cd (diff)
downloaddotty-43f1d800b92241d86703b5518aab171e039fde4e.tar.gz
dotty-43f1d800b92241d86703b5518aab171e039fde4e.tar.bz2
dotty-43f1d800b92241d86703b5518aab171e039fde4e.zip
Add test for unmarshalling github issue form JSON
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala7
1 files changed, 4 insertions, 3 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 242223ba2..3cc10b6e4 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -172,12 +172,13 @@ object DottyBuild extends Build {
settings(sourceStructure).
settings(
libraryDependencies ++= {
- val github4sVersion = "0.9.0"
+ val circeVersion = "0.7.0"
val http4sVersion = "0.15.3"
Seq(
- "io.circe" %% "circe-generic" % "0.6.1",
+ "com.novocode" % "junit-interface" % "0.11" % "test",
+ "io.circe" %% "circe-generic" % circeVersion,
+ "io.circe" %% "circe-parser" % circeVersion,
"ch.qos.logback" % "logback-classic" % "1.1.7",
- "com.fortysevendeg" %% "github4s" % "0.10.0",
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,