aboutsummaryrefslogtreecommitdiff
path: root/stage2/mixins.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-04-07 01:50:26 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-04-07 02:01:03 -0400
commitd915335f32f89a18cec097159f39334fe2bcde0d (patch)
tree57934fe60308864fd247c24d74ab7bf55e638cc8 /stage2/mixins.scala
parent0ef27a7d8cabd0dfe4009b09481566d3d02a76c6 (diff)
downloadcbt-d915335f32f89a18cec097159f39334fe2bcde0d.tar.gz
cbt-d915335f32f89a18cec097159f39334fe2bcde0d.tar.bz2
cbt-d915335f32f89a18cec097159f39334fe2bcde0d.zip
cross building and automatic snaphot ids
Adds support for cross building for multiple scala versions And for automatically appending -SNAPSHOT to the id, when publishing a snapshot.
Diffstat (limited to 'stage2/mixins.scala')
-rw-r--r--stage2/mixins.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/mixins.scala b/stage2/mixins.scala
index 4dedd09..fcffd97 100644
--- a/stage2/mixins.scala
+++ b/stage2/mixins.scala
@@ -5,7 +5,7 @@ import java.io._
trait Test extends Build{
lazy val testedBuild = BuildDependency( projectDirectory.parent )
override def dependencies = Seq( testedBuild ) ++ super.dependencies
- override def scalaVersion = testedBuild.build.scalaVersion
+ override def defaultScalaVersion = testedBuild.build.scalaVersion
}
trait Sbt extends Build{
override def sources = Seq( projectDirectory ++ "/src/main/scala" )