Skip to content

Commit 9586888

Browse files
committed
Bumped up versions for ScalaTest 3.2.17 and JUnit 5.10.
1 parent 889e955 commit 9586888

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit 5.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.16 and JUnit 5.9:
6+
To use it for ScalaTest 3.2.17 and JUnit 5.10:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0" % Test
11+
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.17.0" % Test
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>junit-5-9_2.13</artifactId>
20-
<version>3.2.16.0</version>
19+
<artifactId>junit-5-10_2.13</artifactId>
20+
<version>3.2.17.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```
@@ -28,10 +28,10 @@ Gradle:
2828
dependencies {
2929
implementation "org.scala-lang:scala-library:2.13.11"
3030
31-
testImplementation "org.scalatest:scalatest_2.13:3.2.16"
32-
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
33-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
34-
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0"
31+
testImplementation "org.scalatest:scalatest_2.13:3.2.17"
32+
testImplementation "org.junit.platform:junit-platform-launcher:1.10.0"
33+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.0"
34+
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.17.0"
3535
}
3636
3737
test {
@@ -50,10 +50,10 @@ Gradle (Kotlin):
5050
dependencies {
5151
implementation("org.scala-lang:scala-library:2.13.11")
5252
53-
testImplementation("org.scalatest:scalatest_2.13:3.2.16")
54-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
55-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
56-
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0")
53+
testImplementation("org.scalatest:scalatest_2.13:3.2.17")
54+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.0")
55+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0")
56+
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.17.0")
5757
}
5858
5959
tasks {

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "junit-5.9"
4+
name := "junit-5.10"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.16.0"
8+
version := "3.2.17.0"
99

1010
homepage := Some(url("https://github.com/scalatest/scalatestplus-junit"))
1111

@@ -47,9 +47,9 @@ Compile / unmanagedSourceDirectories ++= {
4747
}
4848
}
4949

50-
val scalatestVersion = "3.2.16"
51-
val junitVersion = "5.9.3"
52-
val junitEngineVersion = "1.9.3"
50+
val scalatestVersion = "3.2.17"
51+
val junitVersion = "5.10.0"
52+
val junitEngineVersion = "1.10.0"
5353

5454
libraryDependencies ++= Seq(
5555
"org.scalatest" %% "scalatest-core" % scalatestVersion,

0 commit comments

Comments
 (0)