Skip to content

Commit a61c6af

Browse files
committed
Use 5.12.1
1 parent 1f37af4 commit a61c6af

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
lines changed

junit5-jupiter-extensions/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
1717
}
1818

1919
dependencies {
20-
api(platform("org.junit:junit-bom:5.12.0"))
20+
api(platform("org.junit:junit-bom:5.12.1"))
2121
api("org.junit.jupiter:junit-jupiter-api") {
2222
because 'building extensions in "main" using JUnit Jupiter API'
2323
}

junit5-jupiter-starter-ant/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
#
55
# Set constants.
66
#
7-
junit_platform_version='1.12.0'
7+
junit_platform_version='1.12.1'
88
ant_version='1.10.13'
99
ant_folder="apache-ant-${ant_version}"
1010
ant_archive="${ant_folder}-bin.tar.gz"

junit5-jupiter-starter-bazel/MODULE.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
JUNIT_JUPITER_VERSION = "5.12.0"
1+
JUNIT_JUPITER_VERSION = "5.12.1"
22

3-
JUNIT_PLATFORM_VERSION = "1.12.0"
3+
JUNIT_PLATFORM_VERSION = "1.12.1"
44

55
bazel_dep(name = "rules_jvm_external", version = "6.7")
66
bazel_dep(name = "contrib_rules_jvm", version = "0.28.0")

junit5-jupiter-starter-gradle-groovy/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010

1111
dependencies {
1212
implementation(localGroovy())
13-
testImplementation(platform('org.junit:junit-bom:5.12.0'))
13+
testImplementation(platform('org.junit:junit-bom:5.12.1'))
1414
testImplementation('org.junit.jupiter:junit-jupiter')
1515
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1616
}

junit5-jupiter-starter-gradle-kotlin/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation(platform("org.junit:junit-bom:5.12.0"))
13+
testImplementation(platform("org.junit:junit-bom:5.12.1"))
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1616
}

junit5-jupiter-starter-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
dependencies {
12-
testImplementation(platform('org.junit:junit-bom:5.12.0'))
12+
testImplementation(platform('org.junit:junit-bom:5.12.1'))
1313
testImplementation('org.junit.jupiter:junit-jupiter')
1414
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1515
}

junit5-jupiter-starter-maven-kotlin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>org.junit</groupId>
2222
<artifactId>junit-bom</artifactId>
23-
<version>5.12.0</version>
23+
<version>5.12.1</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>

junit5-jupiter-starter-maven/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>org.junit</groupId>
2020
<artifactId>junit-bom</artifactId>
21-
<version>5.12.0</version>
21+
<version>5.12.1</version>
2222
<type>pom</type>
2323
<scope>import</scope>
2424
</dependency>

junit5-jupiter-starter-sbt/build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ lazy val root = project
88
name := "junit5-jupiter-starter-sbt",
99
libraryDependencies ++= Seq(
1010
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
11-
"org.junit.jupiter" % "junit-jupiter" % "5.12.0" % Test,
12-
"org.junit.platform" % "junit-platform-launcher" % "1.12.0" % Test,
11+
"org.junit.jupiter" % "junit-jupiter" % "5.12.1" % Test,
12+
"org.junit.platform" % "junit-platform-launcher" % "1.12.1" % Test,
1313
),
1414
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree")
1515
)

junit5-migration-gradle/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Jupiter TestEngine.
6060

6161
```groovy
6262
dependencies {
63-
testImplementation("org.junit.jupiter:junit-jupiter:5.12.0")
63+
testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
6464
}
6565
```
6666

@@ -71,7 +71,7 @@ on the JUnit Vintage TestEngine implementation similar to the following.
7171
```groovy
7272
dependencies {
7373
testImplementation("junit:junit:4.13.2")
74-
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.12.0")
74+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.12.1")
7575
}
7676
```
7777

junit5-migration-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
testImplementation(platform("org.junit:junit-bom:5.12.0"))
13+
testImplementation(platform("org.junit:junit-bom:5.12.1"))
1414

1515
testImplementation("org.junit.jupiter:junit-jupiter") {
1616
because 'allows to write and run Jupiter tests'

junit5-migration-maven/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.junit</groupId>
2121
<artifactId>junit-bom</artifactId>
22-
<version>5.12.0</version>
22+
<version>5.12.1</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>

junit5-modular-world/compile.jsh

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
//
66
// download main and test dependencies
77
//
8-
String platformVersion = "1.12.0"
9-
String jupiterVersion = "5.12.0"
10-
String vintageVersion = "5.12.0"
8+
String platformVersion = "1.12.1"
9+
String jupiterVersion = "5.12.1"
10+
String vintageVersion = "5.12.1"
1111
get("lib", "org.junit.platform", "junit-platform-commons", platformVersion)
1212
get("lib", "org.junit.platform", "junit-platform-console", platformVersion)
1313
get("lib", "org.junit.platform", "junit-platform-engine", platformVersion)

junit5-multiple-engines/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repositories {
1515

1616
dependencies {
1717
val junit4Version = "4.13.2"
18-
val junitBomVersion = "5.12.0"
18+
val junitBomVersion = "5.12.1"
1919

2020
// Use junit-bom to align versions
2121
// https://docs.gradle.org/current/userguide/managing_transitive_dependencies.html#sec:bom_import

0 commit comments

Comments
 (0)