summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2017-01-25 13:49:07 +1000
committerSeth Tisue <seth@tisue.net>2017-01-27 09:30:35 -0800
commit33f6c07e872baa4fbd0ef7c76de2260161e7673d (patch)
treeeb4dea6509b54de275997ff1eb78a9f64a0fb239 /build.sbt
parent4386b948a0b597cc78e4f3b22b51e0588a5b6d60 (diff)
downloadscala-33f6c07e872baa4fbd0ef7c76de2260161e7673d.tar.gz
scala-33f6c07e872baa4fbd0ef7c76de2260161e7673d.tar.bz2
scala-33f6c07e872baa4fbd0ef7c76de2260161e7673d.zip
Move Scaladoc's Partest base classes to partest-extras
They exist in the current location for historical reasons. partest-extras is a cleaner home for them, as we can avoid the dependency of the scaladoc project on partest.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 9f6da2d17d..2200cdff77 100644
--- a/build.sbt
+++ b/build.sbt
@@ -524,7 +524,7 @@ lazy val scaladoc = configureAsSubproject(project)
.settings(
name := "scala-compiler-doc",
description := "Scala Documentation Generator",
- libraryDependencies ++= Seq(scalaXmlDep, partestDep),
+ libraryDependencies ++= Seq(scalaXmlDep),
includeFilter in unmanagedResources in Compile := "*.html" | "*.css" | "*.gif" | "*.png" | "*.js" | "*.txt" | "*.svg" | "*.eot" | "*.woff" | "*.ttf"
)
.dependsOn(compiler)
@@ -543,7 +543,7 @@ lazy val scalap = configureAsSubproject(project)
.dependsOn(compiler)
lazy val partestExtras = Project("partest-extras", file(".") / "src" / "partest-extras")
- .dependsOn(replJlineEmbedded)
+ .dependsOn(replJlineEmbedded, scaladoc)
.settings(commonSettings)
.settings(generatePropertiesFileSettings)
.settings(clearSourceAndResourceDirectories)