aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-03-19 22:15:02 -0400
committerGitHub <noreply@github.com>2017-03-19 22:15:02 -0400
commitfebf7d987f643f3e071510812373778608a480ac (patch)
tree3f2321914d91df63717e3bd6df08bb11574bd7b7 /build
parent092616b3e24deb522ae58d66b24a503efb0a486b (diff)
parent5388bb116834196e1b0a9bd9f2622f36e842b3be (diff)
downloadcbt-febf7d987f643f3e071510812373778608a480ac.tar.gz
cbt-febf7d987f643f3e071510812373778608a480ac.tar.bz2
cbt-febf7d987f643f3e071510812373778608a480ac.zip
Merge pull request #447 from cvogt/chris
Get rid of the hacky "essential" plugins separation
Diffstat (limited to 'build')
-rw-r--r--build/build.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/build.scala b/build/build.scala
index 8f094c3..496acdc 100644
--- a/build/build.scala
+++ b/build/build.scala
@@ -11,11 +11,11 @@ class Build(val context: Context) extends Shared with PublishLocal{
override def dependencies = {
super.dependencies ++ Resolver(mavenCentral).bind(
MavenDependency("org.eclipse.jgit", "org.eclipse.jgit", "4.2.0.201601211800-r"),
- ScalaDependency("org.scala-lang.modules","scala-xml","1.0.5")
+ ScalaDependency("org.scala-lang.modules","scala-xml",constants.scalaXmlVersion)
)
- }
+ } :+ libraries.eval
override def sources = Seq(
"nailgun_launcher", "stage1", "stage2", "compatibility"
- ).map( projectDirectory / _ ).flatMap( _.listFiles )
+ ).map( projectDirectory / _ ).flatMap( _.listOrFail )
}