summaryrefslogtreecommitdiff
path: root/project/Build.scala
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-04-03 11:09:48 -0400
committerJosh Suereth <joshua.suereth@gmail.com>2012-04-03 11:09:48 -0400
commit9894b2c9bcfe9cec0a6853b69148e0c8b5a2508d (patch)
tree425e318f1d0b991feab8098b39d0075b8648a4a3 /project/Build.scala
parent1928dff44fab7b5084240ca413be816da80606ff (diff)
downloadscala-9894b2c9bcfe9cec0a6853b69148e0c8b5a2508d.tar.gz
scala-9894b2c9bcfe9cec0a6853b69148e0c8b5a2508d.tar.bz2
scala-9894b2c9bcfe9cec0a6853b69148e0c8b5a2508d.zip
Fixed build for 0.11.x again. Working on bringing version properties file up to par.
Diffstat (limited to 'project/Build.scala')
-rw-r--r--project/Build.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 9f73563f8e..dd9f9f6c04 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -111,7 +111,7 @@ object ScalaBuild extends Build with Layers {
)
// Settings for root project. These are aggregate tasks against the rest of the build.
- def projectSettings: Seq[Setting[_]] = publishSettings ++ Seq(
+ def projectSettings: Seq[Setting[_]] = publishSettings ++ Versions.settings ++ Seq(
doc in Compile <<= (doc in documentation in Compile).identity,
// These next two aggregate commands on several projects and return results that are to be ignored by remaining tasks.
compile in Compile <<= compiledProjects.map(p => compile in p in Compile).join.map(_.head),