summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-09-14 16:47:38 -0400
committerSeth Tisue <seth@tisue.net>2015-09-14 16:47:38 -0400
commitf0208a6c4af953ed921b722184c467dd671be094 (patch)
treebf932296d5f3f9461773b73a1a0b7fa64bb0b4e4 /build.sbt
parent9770578aa11156ab4983f72560defc78a0902448 (diff)
downloadscala-f0208a6c4af953ed921b722184c467dd671be094.tar.gz
scala-f0208a6c4af953ed921b722184c467dd671be094.tar.bz2
scala-f0208a6c4af953ed921b722184c467dd671be094.zip
sbt build: remove redundancy w/ versions.properties
afaict, this was just an oversight
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index af2399b483..185667eb6a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -50,7 +50,7 @@
* https://groups.google.com/d/topic/scala-internals/gp5JsM1E0Fo/discussion
*/
-val bootstrapScalaVersion = "2.11.7"
+val bootstrapScalaVersion = versionProps("starr.version")
def withoutScalaLang(moduleId: ModuleID): ModuleID = moduleId exclude("org.scala-lang", "*")
@@ -64,7 +64,7 @@ val junitIntefaceDep = "com.novocode" % "junit-interface" % "0.11" % "test"
val asmDep = "org.scala-lang.modules" % "scala-asm" % versionProps("scala-asm.version")
val jlineDep = "jline" % "jline" % versionProps("jline.version")
val antDep = "org.apache.ant" % "ant" % "1.9.4"
-val scalacheckDep = withoutScalaLang("org.scalacheck" %% "scalacheck" % "1.11.6")
+val scalacheckDep = withoutScalaLang("org.scalacheck" %% "scalacheck" % versionNumber("scalacheck"))
lazy val commonSettings = clearSourceAndResourceDirectories ++ Seq[Setting[_]](
organization := "org.scala-lang",