mirror of https://github.com/sbt/sbt.git
Use test-interface 0.2
This commit is contained in:
parent
e6125354d6
commit
9e6c14f200
|
|
@ -46,7 +46,7 @@ class SbtProject(info: ProjectInfo) extends DefaultProject(info) //with test.Sbt
|
|||
val jsch = "com.jcraft" % "jsch" % "0.1.31" intransitive()
|
||||
val jetty = "org.mortbay.jetty" % "jetty" % "6.1.14" % "optional"
|
||||
|
||||
val testInterface = "org.scala-tools.testing" % "test-interface" % "0.1"
|
||||
val testInterface = "org.scala-tools.testing" % "test-interface" % "0.2"
|
||||
|
||||
// xsbt components
|
||||
val xsbti = "org.scala-tools.sbt" % "launcher-interface" % projectVersion.value.toString % "provided"
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ abstract class BasicScalaProject extends ScalaProject with BasicDependencyProjec
|
|||
def testFrameworks: Seq[TestFramework] =
|
||||
{
|
||||
import TestFrameworks.{ScalaCheck, ScalaTest, Specs}
|
||||
ScalaCheckFramework :: /*SpecsFramework ::*/ ScalaTest :: Nil
|
||||
ScalaCheck :: /*SpecsFramework ::*/ ScalaTest :: Nil
|
||||
}
|
||||
/** The list of listeners for testing. */
|
||||
def testListeners: Seq[TestReportListener] = TestLogger(log) :: Nil
|
||||
|
|
|
|||
Loading…
Reference in New Issue