summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-09-14 17:03:44 -0400
committerSeth Tisue <seth@tisue.net>2015-09-14 17:03:44 -0400
commit049ccd9f19ebe7d09c6e5b215a977e99f690c414 (patch)
tree31ae9b01c260d0f7c04550184822b275d3c3a395 /build.sbt
parentf0208a6c4af953ed921b722184c467dd671be094 (diff)
downloadscala-049ccd9f19ebe7d09c6e5b215a977e99f690c414.tar.gz
scala-049ccd9f19ebe7d09c6e5b215a977e99f690c414.tar.bz2
scala-049ccd9f19ebe7d09c6e5b215a977e99f690c414.zip
sbt build: appropriately restrict scope of ScalaCheck dependency
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index 185667eb6a..d9a3992250 100644
--- a/build.sbt
+++ b/build.sbt
@@ -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" % versionNumber("scalacheck"))
+val scalacheckDep = withoutScalaLang("org.scalacheck" %% "scalacheck" % versionNumber("scalacheck") % "it")
lazy val commonSettings = clearSourceAndResourceDirectories ++ Seq[Setting[_]](
organization := "org.scala-lang",