aboutsummaryrefslogtreecommitdiff
path: root/stage1
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-11-08 02:15:45 +0000
committerChristopher Vogt <oss.nsp@cvogt.org>2016-11-09 09:55:38 -0500
commitecbbee7022b9dbd8560dff3ffa6d079924b7cc5c (patch)
treec3a6d0058c7e98c82613f2a05784ba9753e6e7b1 /stage1
parent47a93993a84c572b4a2cd4562b52ec552f36879a (diff)
downloadcbt-ecbbee7022b9dbd8560dff3ffa6d079924b7cc5c.tar.gz
cbt-ecbbee7022b9dbd8560dff3ffa6d079924b7cc5c.tar.bz2
cbt-ecbbee7022b9dbd8560dff3ffa6d079924b7cc5c.zip
Upgrade zinc to 0.3.12
Diffstat (limited to 'stage1')
-rw-r--r--stage1/Stage1.scala2
-rw-r--r--stage1/constants.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/stage1/Stage1.scala b/stage1/Stage1.scala
index e20a046..79bf1d5 100644
--- a/stage1/Stage1.scala
+++ b/stage1/Stage1.scala
@@ -105,7 +105,7 @@ object Stage1{
cbtDependency.dependencyClasspath,
mavenCache,
Seq("-deprecation","-feature","-unchecked"), classLoaderCache,
- zincVersion = "0.3.9", scalaVersion = constants.scalaVersion
+ zincVersion = constants.zincVersion, scalaVersion = constants.scalaVersion
)
logger.stage1(s"calling CbtDependency.classLoader")
diff --git a/stage1/constants.scala b/stage1/constants.scala
index 437cf19..f0414bc 100644
--- a/stage1/constants.scala
+++ b/stage1/constants.scala
@@ -2,6 +2,6 @@ package cbt
object constants{
val scalaXmlVersion = "1.0.5"
val scalaVersion = "2.11.8"
- val zincVersion = "0.3.9"
+ val zincVersion = "0.3.12"
val scalaMajorVersion = scalaVersion.split("\\.").take(2).mkString(".")
}