Fix scope of scalacheck dependency

This commit is contained in:
Mark Harrah 2010-01-10 19:06:16 -05:00
parent 694c45ca03
commit 7a88494af5
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
val default = Configurations.Default
val optional = Configurations.Optional
val provided = Configurations.Provided
val testConf = Configurations.Test
/* Versions of Scala to cross-build against. */
private val Version2_7_7 = "2.7.7"
@ -51,7 +52,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) with test.SbtSc
override def crossScalaVersions = Set(Version2_7_7)
//testing
val scalacheck = "org.scala-tools.testing" %% "scalacheck" % "1.6"
val scalacheck = "org.scala-tools.testing" %% "scalacheck" % "1.6" % "test"
val ivy = "org.apache.ivy" % "ivy" % "2.1.0" intransitive()
val jsch = "com.jcraft" % "jsch" % "0.1.31" intransitive()