Skip to content

Commit 4794833

Browse files
committed
Bumped up JUnit to version 5.11, and newer scala versions.
1 parent a2829d2 commit 4794833

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
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.19 and JUnit 5.10:
6+
To use it for ScalaTest 3.2.19 and JUnit 5.11:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.19.1" % Test
11+
libraryDependencies += "org.scalatestplus" %% "junit-5-11" % "3.2.19.0" % Test
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>junit-5-10_3</artifactId>
20-
<version>3.2.19.1</version>
19+
<artifactId>junit-5-11_3</artifactId>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```
@@ -26,12 +26,12 @@ Gradle:
2626

2727
```
2828
dependencies {
29-
implementation "org.scala-lang:scala3-library:3.3.3"
29+
implementation "org.scala-lang:scala3-library:3.3.4"
3030
3131
testImplementation "org.scalatest:scalatest_3:3.2.19"
32-
testImplementation "org.junit.platform:junit-platform-launcher:1.10.2"
33-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.2"
34-
testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.1"
32+
testImplementation "org.junit.platform:junit-platform-launcher:1.11.3"
33+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.11.3"
34+
testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.0"
3535
}
3636
3737
test {
@@ -48,12 +48,12 @@ Gradle (Kotlin):
4848

4949
```
5050
dependencies {
51-
implementation("org.scala-lang:scala3-library:3.3.3")
51+
implementation("org.scala-lang:scala3-library:3.3.4")
5252
5353
testImplementation("org.scalatest:scalatest_3:3.2.19")
54-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.2")
55-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2")
56-
testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.19.1")
54+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.11.3")
55+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.3")
56+
testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.19.0")
5757
}
5858
5959
tasks {

build.sbt

Lines changed: 8 additions & 8 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.10"
4+
name := "junit-5.11"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.19.1"
8+
version := "3.2.19.0"
99

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

@@ -26,13 +26,13 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.13"
29+
scalaVersion := "2.13.15"
3030

3131
crossScalaVersions := List(
3232
"2.11.12",
33-
"2.12.19",
34-
"2.13.13",
35-
"3.3.3"
33+
"2.12.20",
34+
"2.13.15",
35+
"3.3.4"
3636
)
3737

3838
scalacOptions ++= Seq("-target:jvm-1.8")
@@ -47,8 +47,8 @@ Compile / unmanagedSourceDirectories ++= {
4747
}
4848

4949
val scalatestVersion = "3.2.19"
50-
val junitVersion = "5.10.2"
51-
val junitEngineVersion = "1.10.2"
50+
val junitVersion = "5.11.3"
51+
val junitEngineVersion = "1.11.3"
5252

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

0 commit comments

Comments
 (0)