aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authoradamw <adam@warski.org>2017-07-19 15:00:46 +0200
committeradamw <adam@warski.org>2017-07-19 15:00:46 +0200
commitcc475bfae8163836c89ea64726e5e5d4d2fa36d3 (patch)
treeec9c111a0955b7c710771b441e872d9ab7e64c0e /build.sbt
parent5aaac06c2d5ea122470ee7b27277ac0747e767d1 (diff)
downloadsttp-cc475bfae8163836c89ea64726e5e5d4d2fa36d3.tar.gz
sttp-cc475bfae8163836c89ea64726e5e5d4d2fa36d3.tar.bz2
sttp-cc475bfae8163836c89ea64726e5e5d4d2fa36d3.zip
Better non-compilation tests
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 248c62d..0c5da52 100644
--- a/build.sbt
+++ b/build.sbt
@@ -78,5 +78,6 @@ lazy val tests: Project = (project in file("tests"))
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"com.github.pathikrit" %% "better-files" % "2.17.1",
"ch.qos.logback" % "logback-classic" % "1.2.3"
- ).map(_ % "test")
+ ).map(_ % "test"),
+ libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "test"
) dependsOn (core, akkaHttpHandler)