Skip to content

Commit 46384d0

Browse files
committed
Use 5.12.0
1 parent 63f3442 commit 46384d0

File tree

15 files changed

+424
-251
lines changed

15 files changed

+424
-251
lines changed

junit5-jupiter-extensions/build.gradle

Lines changed: 1 addition & 1 deletion
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.11.4"))
20+
api(platform("org.junit:junit-bom:5.12.0"))
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
#
55
# Set constants.
66
#
7-
junit_platform_version='1.11.4'
7+
junit_platform_version='1.12.0'
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
JUNIT_JUPITER_VERSION = "5.11.4"
1+
JUNIT_JUPITER_VERSION = "5.12.0"
22

3-
JUNIT_PLATFORM_VERSION = "1.11.4"
3+
JUNIT_PLATFORM_VERSION = "1.12.0"
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-bazel/MODULE.bazel.lock

Lines changed: 405 additions & 232 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 1 deletion
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.11.4'))
13+
testImplementation(platform('org.junit:junit-bom:5.12.0'))
1414
testImplementation('org.junit.jupiter:junit-jupiter')
1515
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1616
}

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

Lines changed: 1 addition & 1 deletion
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.11.4"))
13+
testImplementation(platform("org.junit:junit-bom:5.12.0"))
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1616
}

junit5-jupiter-starter-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
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.11.4'))
12+
testImplementation(platform('org.junit:junit-bom:5.12.0'))
1313
testImplementation('org.junit.jupiter:junit-jupiter')
1414
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1515
}

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

Lines changed: 1 addition & 1 deletion
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.11.4</version>
23+
<version>5.12.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>

junit5-jupiter-starter-maven/pom.xml

Lines changed: 1 addition & 1 deletion
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.11.4</version>
21+
<version>5.12.0</version>
2222
<type>pom</type>
2323
<scope>import</scope>
2424
</dependency>

junit5-jupiter-starter-sbt/build.sbt

Lines changed: 2 additions & 2 deletions
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.11.4" % Test,
12-
"org.junit.platform" % "junit-platform-launcher" % "1.11.4" % Test,
11+
"org.junit.jupiter" % "junit-jupiter" % "5.12.0" % Test,
12+
"org.junit.platform" % "junit-platform-launcher" % "1.12.0" % Test,
1313
),
1414
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree")
1515
)

0 commit comments

Comments
 (0)