aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-05-05 11:28:51 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-08-19 15:37:22 +0200
commit29cf43bca7e478f290e7c39a05ce7e8bcb218d3d (patch)
tree700e755e13f296728094831d6ab204df12d017df /project
parentb4622aabd0ebd6929639c9cfcd3c7845a250598f (diff)
downloaddotty-29cf43bca7e478f290e7c39a05ce7e8bcb218d3d.tar.gz
dotty-29cf43bca7e478f290e7c39a05ce7e8bcb218d3d.tar.bz2
dotty-29cf43bca7e478f290e7c39a05ce7e8bcb218d3d.zip
Add JUnit test structure for testing the DocPhase
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala4
-rw-r--r--project/plugins.sbt2
2 files changed, 4 insertions, 2 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 6b9939a34..add3ebecb 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -268,7 +268,6 @@ object DottyInjectedPlugin extends AutoPlugin {
.jsSettings(
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "0.9.0",
- "com.github.benhutchison" %%% "microjson" % "1.3",
"com.github.benhutchison" %%% "prickle" % "1.1.10",
"com.lihaoyi" %%% "scalatags" % "0.5.5"
)
@@ -287,7 +286,8 @@ object DottyInjectedPlugin extends AutoPlugin {
libraryDependencies ++= Seq(
"org.scala-js" % "scalajs-dom_sjs0.6_2.11" % "0.9.0",
"com.github.benhutchison" %% "prickle" % "1.1.10",
- "com.lihaoyi" %% "scalatags" % "0.5.5"
+ "com.lihaoyi" %% "scalatags" % "0.5.5",
+ "com.novocode" % "junit-interface" % "0.11" % "test"
),
// enable improved incremental compilation algorithm
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 57bd46581..8ac4d69bf 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -8,3 +8,5 @@ addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.8")
+
+addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")