Skip to content

Commit 7ee2020

Browse files
committed
Use 5.10.5
1 parent d564f60 commit 7ee2020

File tree

15 files changed

+20
-20
lines changed

15 files changed

+20
-20
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.1"))
20+
api(platform("org.junit:junit-bom:5.10.5"))
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
@@ -3,7 +3,7 @@
33
#
44
# Set constants.
55
#
6-
junit_platform_version='1.11.1'
6+
junit_platform_version='1.10.5'
77
ant_version='1.10.13'
88
ant_folder="apache-ant-${ant_version}"
99
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.1"
1+
JUNIT_JUPITER_VERSION = "5.10.5"
22

3-
JUNIT_PLATFORM_VERSION = "1.11.1"
3+
JUNIT_PLATFORM_VERSION = "1.10.5"
44

55
bazel_dep(name = "rules_jvm_external", version = "6.4")
66
bazel_dep(name = "contrib_rules_jvm", version = "0.27.0")

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

Lines changed: 1 addition & 1 deletion
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.1'))
13+
testImplementation(platform('org.junit:junit-bom:5.10.5'))
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.1"))
13+
testImplementation(platform("org.junit:junit-bom:5.10.5"))
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.1'))
12+
testImplementation(platform('org.junit:junit-bom:5.10.5'))
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.1</version>
23+
<version>5.10.5</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.1</version>
21+
<version>5.10.5</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.1" % Test,
12-
"org.junit.platform" % "junit-platform-launcher" % "1.11.1" % Test,
11+
"org.junit.jupiter" % "junit-jupiter" % "5.10.5" % Test,
12+
"org.junit.platform" % "junit-platform-launcher" % "1.10.5" % Test,
1313
),
1414
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree")
1515
)

0 commit comments

Comments
 (0)