Skip to content

Commit f3168f3

Browse files
committed
Use 6.0.0-M1
1 parent 952600d commit f3168f3

File tree

14 files changed

+16
-16
lines changed

14 files changed

+16
-16
lines changed

junit-jupiter-extensions/build.gradle

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

2525
dependencies {
26-
api(platform("org.junit:junit-bom:6.0.0-SNAPSHOT"))
26+
api(platform("org.junit:junit-bom:6.0.0-M1"))
2727
api("org.junit.jupiter:junit-jupiter-api") {
2828
because 'building extensions in "main" using JUnit Jupiter API'
2929
}

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-SNAPSHOT'
7+
junit_version='6.0.0-M1'
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-SNAPSHOT"
1+
JUNIT_VERSION = "6.0.0-M1"
22

33
bazel_dep(name = "rules_jvm_external", version = "6.7")
44
bazel_dep(name = "contrib_rules_jvm", version = "0.29.0")

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
implementation(localGroovy())
20-
testImplementation(platform('org.junit:junit-bom:6.0.0-SNAPSHOT'))
20+
testImplementation(platform('org.junit:junit-bom:6.0.0-M1'))
2121
testImplementation('org.junit.jupiter:junit-jupiter')
2222
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
2323
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
}
1717

1818
dependencies {
19-
testImplementation(platform("org.junit:junit-bom:6.0.0-SNAPSHOT"))
19+
testImplementation(platform("org.junit:junit-bom:6.0.0-M1"))
2020
testImplementation("org.junit.jupiter:junit-jupiter")
2121
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
2222
}

junit-jupiter-starter-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
}
1717

1818
dependencies {
19-
testImplementation(platform('org.junit:junit-bom:6.0.0-SNAPSHOT'))
19+
testImplementation(platform('org.junit:junit-bom:6.0.0-M1'))
2020
testImplementation('org.junit.jupiter:junit-jupiter')
2121
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
2222
}

junit-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>6.0.0-SNAPSHOT</version>
23+
<version>6.0.0-M1</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>

junit-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>6.0.0-SNAPSHOT</version>
21+
<version>6.0.0-M1</version>
2222
<type>pom</type>
2323
<scope>import</scope>
2424
</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-SNAPSHOT" % Test,
12-
"org.junit.platform" % "junit-platform-launcher" % "6.0.0-SNAPSHOT" % Test,
11+
"org.junit.jupiter" % "junit-jupiter" % "6.0.0-M1" % Test,
12+
"org.junit.platform" % "junit-platform-launcher" % "6.0.0-M1" % Test,
1313
),
1414
testOptions += Tests.Argument(jupiterTestFramework, "--display-mode=tree"),
1515
resolvers += "Maven Central Snapshots" at "https://central.sonatype.com/repository/maven-snapshots"

junit-migration-gradle/README.md

Lines changed: 2 additions & 2 deletions
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:6.0.0-SNAPSHOT")
63+
testImplementation("org.junit.jupiter:junit-jupiter:6.0.0-M1")
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:6.0.0-SNAPSHOT")
74+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:6.0.0-M1")
7575
}
7676
```
7777

0 commit comments

Comments
 (0)