Skip to content

Commit ff2183e

Browse files
committed
Use 6.0.1
1 parent 74988b6 commit ff2183e

File tree

15 files changed

+19
-48
lines changed

15 files changed

+19
-48
lines changed

junit-jupiter-extensions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tasks.withType(JavaCompile).configureEach {
1616
}
1717

1818
dependencies {
19-
api(platform("org.junit:junit-bom:6.0.0"))
19+
api(platform("org.junit:junit-bom:6.0.1"))
2020
api("org.junit.jupiter:junit-jupiter-api") {
2121
because 'building extensions in "main" using JUnit Jupiter API'
2222
}

junit-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_version='6.0.0'
7+
junit_version='6.0.1'
88
ant_version='1.10.15'
99
ant_folder="apache-ant-${ant_version}"
1010
ant_archive="${ant_folder}-bin.tar.gz"

junit-jupiter-starter-bazel/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
JUNIT_VERSION = "6.0.0"
1+
JUNIT_VERSION = "6.0.1"
22

33
bazel_dep(name = "rules_jvm_external", version = "6.8")
44
bazel_dep(name = "contrib_rules_jvm", version = "0.30.0")

junit-jupiter-starter-bazel/MODULE.bazel.lock

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

junit-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:6.0.0'))
13+
testImplementation(platform('org.junit:junit-bom:6.0.1'))
1414
testImplementation('org.junit.jupiter:junit-jupiter')
1515
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1616
}

junit-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:6.0.0"))
13+
testImplementation(platform("org.junit:junit-bom:6.0.1"))
1414
testImplementation("org.junit.jupiter:junit-jupiter")
1515
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1616
}

junit-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:6.0.0'))
12+
testImplementation(platform('org.junit:junit-bom:6.0.1'))
1313
testImplementation('org.junit.jupiter:junit-jupiter')
1414
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
1515
}

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

Lines changed: 1 addition & 1 deletion
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>6.0.0</version>
22+
<version>6.0.1</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>

junit-jupiter-starter-maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>org.junit</groupId>
1919
<artifactId>junit-bom</artifactId>
20-
<version>6.0.0</version>
20+
<version>6.0.1</version>
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>

junit-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 := "junit-jupiter-starter-sbt",
99
libraryDependencies ++= Seq(
1010
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
11-
"org.junit.jupiter" % "junit-jupiter" % "6.0.0" % Test,
12-
"org.junit.platform" % "junit-platform-launcher" % "6.0.0" % Test,
11+
"org.junit.jupiter" % "junit-jupiter" % "6.0.1" % Test,
12+
"org.junit.platform" % "junit-platform-launcher" % "6.0.1" % Test,
1313
),
1414
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree")
1515
)

0 commit comments

Comments
 (0)