Skip to content

Commit

Permalink
Use 5.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Dec 16, 2024
1 parent 13ae831 commit d046f14
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion junit5-jupiter-extensions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
}

dependencies {
api(platform("org.junit:junit-bom:5.11.3"))
api(platform("org.junit:junit-bom:5.11.4"))
api("org.junit.jupiter:junit-jupiter-api") {
because 'building extensions in "main" using JUnit Jupiter API'
}
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-ant/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
#
# Set constants.
#
junit_platform_version='1.11.3'
junit_platform_version='1.11.4'
ant_version='1.10.13'
ant_folder="apache-ant-${ant_version}"
ant_archive="${ant_folder}-bin.tar.gz"
Expand Down
4 changes: 2 additions & 2 deletions junit5-jupiter-starter-bazel/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
JUNIT_JUPITER_VERSION = "5.11.3"
JUNIT_JUPITER_VERSION = "5.11.4"

JUNIT_PLATFORM_VERSION = "1.11.3"
JUNIT_PLATFORM_VERSION = "1.11.4"

bazel_dep(name = "rules_jvm_external", version = "6.6")
bazel_dep(name = "contrib_rules_jvm", version = "0.27.0")
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-gradle-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {

dependencies {
implementation(localGroovy())
testImplementation(platform('org.junit:junit-bom:5.11.3'))
testImplementation(platform('org.junit:junit-bom:5.11.4'))
testImplementation('org.junit.jupiter:junit-jupiter')
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
}
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-gradle-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation(platform("org.junit:junit-bom:5.11.4"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
}

dependencies {
testImplementation(platform('org.junit:junit-bom:5.11.3'))
testImplementation(platform('org.junit:junit-bom:5.11.4'))
testImplementation('org.junit.jupiter:junit-jupiter')
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
}
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-maven-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.3</version>
<version>5.11.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion junit5-jupiter-starter-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.3</version>
<version>5.11.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions junit5-jupiter-starter-sbt/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ lazy val root = project
name := "junit5-jupiter-starter-sbt",
libraryDependencies ++= Seq(
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
"org.junit.jupiter" % "junit-jupiter" % "5.11.3" % Test,
"org.junit.platform" % "junit-platform-launcher" % "1.11.3" % Test,
"org.junit.jupiter" % "junit-jupiter" % "5.11.4" % Test,
"org.junit.platform" % "junit-platform-launcher" % "1.11.4" % Test,
),
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree")
)
4 changes: 2 additions & 2 deletions junit5-migration-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Jupiter TestEngine.

```groovy
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
}
```

Expand All @@ -71,7 +71,7 @@ on the JUnit Vintage TestEngine implementation similar to the following.
```groovy
dependencies {
testImplementation("junit:junit:4.13.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.11.3")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.11.4")
}
```

Expand Down
2 changes: 1 addition & 1 deletion junit5-migration-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
testImplementation(platform("org.junit:junit-bom:5.11.3"))
testImplementation(platform("org.junit:junit-bom:5.11.4"))

testImplementation("org.junit.jupiter:junit-jupiter") {
because 'allows to write and run Jupiter tests'
Expand Down
2 changes: 1 addition & 1 deletion junit5-migration-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.3</version>
<version>5.11.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions junit5-modular-world/compile.jsh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
//
// download main and test dependencies
//
String platformVersion = "1.11.3"
String jupiterVersion = "5.11.3"
String vintageVersion = "5.11.3"
String platformVersion = "1.11.4"
String jupiterVersion = "5.11.4"
String vintageVersion = "5.11.4"
get("lib", "org.junit.platform", "junit-platform-commons", platformVersion)
get("lib", "org.junit.platform", "junit-platform-console", platformVersion)
get("lib", "org.junit.platform", "junit-platform-engine", platformVersion)
Expand Down
2 changes: 1 addition & 1 deletion junit5-multiple-engines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {

dependencies {
val junit4Version = "4.13.2"
val junitBomVersion = "5.11.3"
val junitBomVersion = "5.11.4"

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

0 comments on commit d046f14

Please sign in to comment.