@@ -42,6 +42,8 @@ object ScalatestBuild {
42
42
43
43
val previousReleaseVersion = " 3.0.5"
44
44
45
+ val plusJUnitVersion = " 1.0.0-SNAP4"
46
+ val plusTestNGVersion = " 1.0.0-SNAP3"
45
47
val pegdownVersion = " 1.4.2"
46
48
47
49
val githubTag = " release-3.1.0" // for scaladoc source urls
@@ -225,8 +227,8 @@ object ScalatestBuild {
225
227
226
228
def scalatestTestLibraryDependencies (theScalaVersion : String ) =
227
229
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"
230
232
)
231
233
232
234
val scalaJSVersion = Option (System .getenv(" SCALAJS_VERSION" )).getOrElse(" 0.6.25" )
@@ -804,8 +806,7 @@ object ScalatestBuild {
804
806
" org.scalatest.time" ,
805
807
" org.scalatest.tools" ,
806
808
" org.scalatest.verb" ,
807
- " org.scalatest.words" ,
808
- " org.scalatestplus.scalacheck"
809
+ " org.scalatest.words"
809
810
),
810
811
OsgiKeys .importPackage := Seq (
811
812
" org.scalatest.*" ,
@@ -1418,8 +1419,8 @@ object ScalatestBuild {
1418
1419
def gentestsLibraryDependencies =
1419
1420
Seq (
1420
1421
" 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"
1423
1424
)
1424
1425
1425
1426
def gentestsSharedSettings : Seq [Setting [_]] = Seq (
0 commit comments