aboutsummaryrefslogtreecommitdiff
path: root/stage1
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-29 09:04:19 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-04-01 23:36:33 -0400
commit5553c92eec89fa06c6eaa61645b2c9cb8332f404 (patch)
tree960336e7023745fea672839cefd900d914618eba /stage1
parentf570ad5ac5461acb7dc07a3a8654fdd54e645bb3 (diff)
downloadcbt-5553c92eec89fa06c6eaa61645b2c9cb8332f404.tar.gz
cbt-5553c92eec89fa06c6eaa61645b2c9cb8332f404.tar.bz2
cbt-5553c92eec89fa06c6eaa61645b2c9cb8332f404.zip
centralize all references to scala versions into single place
Diffstat (limited to 'stage1')
-rw-r--r--stage1/constants.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/stage1/constants.scala b/stage1/constants.scala
index ebc892c..d87fb64 100644
--- a/stage1/constants.scala
+++ b/stage1/constants.scala
@@ -1,7 +1,7 @@
package cbt
object constants{
- val scalaXmlVersion = "1.0.5"
- val scalaVersion = "2.11.8"
- val zincVersion = "0.3.13"
+ val scalaXmlVersion = EarlyDependencies.scalaXmlVersion
+ val scalaVersion = EarlyDependencies.scalaVersion
+ val zincVersion = EarlyDependencies.zincVersion
val scalaMajorVersion = scalaVersion.split("\\.").take(2).mkString(".")
}