Skip to content

Commit a9927c4

Browse files
committed
Merge branch 'cheeseng-feature-bump-up-scalatestplus-junit-testng' into 3.1.x
2 parents 777667a + b079721 commit a9927c4

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

project/scalatest.scala

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ object ScalatestBuild {
4242

4343
val previousReleaseVersion = "3.0.5"
4444

45+
val plusJUnitVersion = "1.0.0-SNAP4"
46+
val plusTestNGVersion = "1.0.0-SNAP3"
4547
val pegdownVersion = "1.4.2"
4648

4749
val githubTag = "release-3.1.0" // for scaladoc source urls
@@ -225,8 +227,8 @@ object ScalatestBuild {
225227

226228
def scalatestTestLibraryDependencies(theScalaVersion: String) =
227229
Seq(
228-
"org.scalatestplus" %% "scalatestplus-testng" % "1.0.0-SNAP2" % "test",
229-
"org.scalatestplus" %% "scalatestplus-junit" % "1.0.0-SNAP3" % "test"
230+
"org.scalatestplus" %% "scalatestplus-testng" % plusTestNGVersion % "test",
231+
"org.scalatestplus" %% "scalatestplus-junit" % plusJUnitVersion % "test"
230232
)
231233

232234
val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.25")
@@ -804,8 +806,7 @@ object ScalatestBuild {
804806
"org.scalatest.time",
805807
"org.scalatest.tools",
806808
"org.scalatest.verb",
807-
"org.scalatest.words",
808-
"org.scalatestplus.scalacheck"
809+
"org.scalatest.words"
809810
),
810811
OsgiKeys.importPackage := Seq(
811812
"org.scalatest.*",
@@ -1418,8 +1419,8 @@ object ScalatestBuild {
14181419
def gentestsLibraryDependencies =
14191420
Seq(
14201421
"org.pegdown" % "pegdown" % pegdownVersion % "optional",
1421-
"org.scalatestplus" %% "scalatestplus-testng" % "1.0.0-SNAP2" % "test",
1422-
"org.scalatestplus" %% "scalatestplus-junit" % "1.0.0-SNAP3" % "test"
1422+
"org.scalatestplus" %% "scalatestplus-testng" % plusTestNGVersion % "test",
1423+
"org.scalatestplus" %% "scalatestplus-junit" % plusJUnitVersion % "test"
14231424
)
14241425

14251426
def gentestsSharedSettings: Seq[Setting[_]] = Seq(

0 commit comments

Comments
 (0)