summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2016-02-12 21:58:36 +1000
committerJason Zaugg <jzaugg@gmail.com>2016-02-12 22:37:20 +1000
commit50adf9893b80a6c63fd10ab4ab6d58a711e40784 (patch)
tree055e320606469ea4f937dc019dba9af4aa2648a3 /build.sbt
parent7910508d1071e0e769ff6e291d3a1c479a067262 (diff)
downloadscala-50adf9893b80a6c63fd10ab4ab6d58a711e40784.tar.gz
scala-50adf9893b80a6c63fd10ab4ab6d58a711e40784.tar.bz2
scala-50adf9893b80a6c63fd10ab4ab6d58a711e40784.zip
Update to partest 1.0.13
Which lets us remove the dependency on sbt-partest-interface, as this has been incorporated into scala-partest itself.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index 6941c8cb7f..9c3991e811 100644
--- a/build.sbt
+++ b/build.sbt
@@ -64,7 +64,6 @@ val scalaParserCombinatorsDep = withoutScalaLang("org.scala-lang.modules" %% "sc
val scalaSwingDep = withoutScalaLang("org.scala-lang.modules" %% "scala-swing" % versionNumber("scala-swing"))
val scalaXmlDep = withoutScalaLang("org.scala-lang.modules" %% "scala-xml" % versionNumber("scala-xml"))
val partestDep = withoutScalaLang("org.scala-lang.modules" %% "scala-partest" % versionNumber("partest"))
-val partestInterfaceDep = withoutScalaLang("org.scala-lang.modules" %% "scala-partest-interface" % "0.7.0")
val junitDep = "junit" % "junit" % "4.11"
val junitIntefaceDep = "com.novocode" % "junit-interface" % "0.11" % "test"
val asmDep = "org.scala-lang.modules" % "scala-asm" % versionProps("scala-asm.version")
@@ -548,7 +547,7 @@ lazy val test = project
.settings(Defaults.itSettings: _*)
.settings(
publishArtifact := false,
- libraryDependencies ++= Seq(asmDep, partestDep, scalaXmlDep, partestInterfaceDep, scalacheckDep),
+ libraryDependencies ++= Seq(asmDep, partestDep, scalaXmlDep, scalacheckDep),
unmanagedBase in IntegrationTest := baseDirectory.value / "files" / "lib",
unmanagedJars in IntegrationTest <+= (unmanagedBase) (j => Attributed.blank(j)) map(identity),
// no main sources
@@ -557,7 +556,7 @@ lazy val test = project
sources in IntegrationTest := Seq.empty,
fork in IntegrationTest := true,
javaOptions in IntegrationTest += "-Xmx1G",
- testFrameworks += new TestFramework("scala.tools.partest.Framework"),
+ testFrameworks += new TestFramework("scala.tools.partest.sbt.Framework"),
testOptions in IntegrationTest += Tests.Setup( () => root.base.getAbsolutePath + "/pull-binary-libs.sh" ! ),
testOptions in IntegrationTest += Tests.Argument("-Dpartest.java_opts=-Xmx1024M -Xms64M -XX:MaxPermSize=128M"),
definedTests in IntegrationTest += (