File tree Expand file tree Collapse file tree 14 files changed +19
-19
lines changed
junit5-jupiter-extensions
junit5-jupiter-starter-ant
junit5-jupiter-starter-bazel
junit5-jupiter-starter-gradle-groovy
junit5-jupiter-starter-gradle-kotlin
junit5-jupiter-starter-gradle
junit5-jupiter-starter-maven-kotlin
junit5-jupiter-starter-maven
junit5-jupiter-starter-sbt Expand file tree Collapse file tree 14 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ tasks.withType(JavaCompile).configureEach {
17
17
}
18
18
19
19
dependencies {
20
- api(platform(" org.junit:junit-bom:5.12.1 " ))
20
+ api(platform(" org.junit:junit-bom:5.12.2 " ))
21
21
api(" org.junit.jupiter:junit-jupiter-api" ) {
22
22
because ' building extensions in "main" using JUnit Jupiter API'
23
23
}
Original file line number Diff line number Diff line change 4
4
#
5
5
# Set constants.
6
6
#
7
- junit_platform_version=' 1.12.1 '
7
+ junit_platform_version=' 1.12.2 '
8
8
ant_version=' 1.10.13'
9
9
ant_folder=" apache-ant-${ant_version} "
10
10
ant_archive=" ${ant_folder} -bin.tar.gz"
Original file line number Diff line number Diff line change 1
- JUNIT_JUPITER_VERSION = "5.12.1 "
1
+ JUNIT_JUPITER_VERSION = "5.12.2 "
2
2
3
- JUNIT_PLATFORM_VERSION = "1.12.1 "
3
+ JUNIT_PLATFORM_VERSION = "1.12.2 "
4
4
5
5
bazel_dep (name = "rules_jvm_external" , version = "6.7" )
6
6
bazel_dep (name = "contrib_rules_jvm" , version = "0.28.0" )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
11
11
dependencies {
12
12
implementation(localGroovy())
13
- testImplementation(platform(' org.junit:junit-bom:5.12.1 ' ))
13
+ testImplementation(platform(' org.junit:junit-bom:5.12.2 ' ))
14
14
testImplementation(' org.junit.jupiter:junit-jupiter' )
15
15
testRuntimeOnly(' org.junit.platform:junit-platform-launcher' )
16
16
}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
10
10
}
11
11
12
12
dependencies {
13
- testImplementation(platform(" org.junit:junit-bom:5.12.1 " ))
13
+ testImplementation(platform(" org.junit:junit-bom:5.12.2 " ))
14
14
testImplementation(" org.junit.jupiter:junit-jupiter" )
15
15
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
16
16
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ repositories {
9
9
}
10
10
11
11
dependencies {
12
- testImplementation(platform(' org.junit:junit-bom:5.12.1 ' ))
12
+ testImplementation(platform(' org.junit:junit-bom:5.12.2 ' ))
13
13
testImplementation(' org.junit.jupiter:junit-jupiter' )
14
14
testRuntimeOnly(' org.junit.platform:junit-platform-launcher' )
15
15
}
Original file line number Diff line number Diff line change 20
20
<dependency >
21
21
<groupId >org.junit</groupId >
22
22
<artifactId >junit-bom</artifactId >
23
- <version >5.12.1 </version >
23
+ <version >5.12.2 </version >
24
24
<type >pom</type >
25
25
<scope >import</scope >
26
26
</dependency >
Original file line number Diff line number Diff line change 18
18
<dependency >
19
19
<groupId >org.junit</groupId >
20
20
<artifactId >junit-bom</artifactId >
21
- <version >5.12.1 </version >
21
+ <version >5.12.2 </version >
22
22
<type >pom</type >
23
23
<scope >import</scope >
24
24
</dependency >
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ lazy val root = project
8
8
name := " junit5-jupiter-starter-sbt" ,
9
9
libraryDependencies ++= Seq (
10
10
" net.aichler" % " jupiter-interface" % JupiterKeys .jupiterVersion.value % Test ,
11
- " org.junit.jupiter" % " junit-jupiter" % " 5.12.1 " % Test ,
12
- " org.junit.platform" % " junit-platform-launcher" % " 1.12.1 " % Test ,
11
+ " org.junit.jupiter" % " junit-jupiter" % " 5.12.2 " % Test ,
12
+ " org.junit.platform" % " junit-platform-launcher" % " 1.12.2 " % Test ,
13
13
),
14
14
testOptions += Tests .Argument (jupiterTestFramework, " --display-mode=tree" )
15
15
)
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Jupiter TestEngine.
60
60
61
61
``` groovy
62
62
dependencies {
63
- testImplementation("org.junit.jupiter:junit-jupiter:5.12.1 ")
63
+ testImplementation("org.junit.jupiter:junit-jupiter:5.12.2 ")
64
64
}
65
65
```
66
66
@@ -71,7 +71,7 @@ on the JUnit Vintage TestEngine implementation similar to the following.
71
71
``` groovy
72
72
dependencies {
73
73
testImplementation("junit:junit:4.13.2")
74
- testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.12.1 ")
74
+ testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.12.2 ")
75
75
}
76
76
```
77
77
You can’t perform that action at this time.
0 commit comments