File tree Expand file tree Collapse file tree 14 files changed +19
-19
lines changed
junit-jupiter-starter-ant
junit-jupiter-starter-bazel
junit-jupiter-starter-gradle-groovy
junit-jupiter-starter-gradle-kotlin
junit-jupiter-starter-gradle
junit-jupiter-starter-maven-kotlin
junit-jupiter-starter-maven
junit-jupiter-starter-sbt
junit-modular-world/src/build 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 {
1717}
1818
1919dependencies {
20- api(platform(" org.junit:junit-bom:5.14.0 " ))
20+ api(platform(" org.junit:junit-bom:5.14.1 " ))
2121 api(" org.junit.jupiter:junit-jupiter-api" ) {
2222 because ' building extensions in "main" using JUnit Jupiter API'
2323 }
Original file line number Diff line number Diff line change 44#
55# Set constants.
66#
7- junit_platform_version=' 1.14.0 '
7+ junit_platform_version=' 1.14.1 '
88ant_version=' 1.10.15'
99ant_folder=" apache-ant-${ant_version} "
1010ant_archive=" ${ant_folder} -bin.tar.gz"
Original file line number Diff line number Diff line change 1- JUNIT_JUPITER_VERSION = "5.14.0 "
1+ JUNIT_JUPITER_VERSION = "5.14.1 "
22
3- JUNIT_PLATFORM_VERSION = "1.14.0 "
3+ JUNIT_PLATFORM_VERSION = "1.14.1 "
44
55bazel_dep (name = "rules_jvm_external" , version = "6.8" )
66bazel_dep (name = "contrib_rules_jvm" , version = "0.30.0" )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
1010
1111dependencies {
1212 implementation(localGroovy())
13- testImplementation(platform(' org.junit:junit-bom:5.14.0 ' ))
13+ testImplementation(platform(' org.junit:junit-bom:5.14.1 ' ))
1414 testImplementation(' org.junit.jupiter:junit-jupiter' )
1515 testRuntimeOnly(' org.junit.platform:junit-platform-launcher' )
1616}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repositories {
1010}
1111
1212dependencies {
13- testImplementation(platform(" org.junit:junit-bom:5.14.0 " ))
13+ testImplementation(platform(" org.junit:junit-bom:5.14.1 " ))
1414 testImplementation(" org.junit.jupiter:junit-jupiter" )
1515 testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
1616}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ repositories {
99}
1010
1111dependencies {
12- testImplementation(platform(' org.junit:junit-bom:5.14.0 ' ))
12+ testImplementation(platform(' org.junit:junit-bom:5.14.1 ' ))
1313 testImplementation(' org.junit.jupiter:junit-jupiter' )
1414 testRuntimeOnly(' org.junit.platform:junit-platform-launcher' )
1515}
Original file line number Diff line number Diff line change 2020 <dependency >
2121 <groupId >org.junit</groupId >
2222 <artifactId >junit-bom</artifactId >
23- <version >5.14.0 </version >
23+ <version >5.14.1 </version >
2424 <type >pom</type >
2525 <scope >import</scope >
2626 </dependency >
Original file line number Diff line number Diff line change 1818 <dependency >
1919 <groupId >org.junit</groupId >
2020 <artifactId >junit-bom</artifactId >
21- <version >5.14.0 </version >
21+ <version >5.14.1 </version >
2222 <type >pom</type >
2323 <scope >import</scope >
2424 </dependency >
Original file line number Diff line number Diff 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" % " 5.14.0 " % Test ,
12- " org.junit.platform" % " junit-platform-launcher" % " 1.14.0 " % Test ,
11+ " org.junit.jupiter" % " junit-jupiter" % " 5.14.1 " % Test ,
12+ " org.junit.platform" % " junit-platform-launcher" % " 1.14.1 " % Test ,
1313 ),
1414 testOptions += Tests .Argument (jupiterTestFramework, " --display-mode=tree" )
1515 )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ Jupiter TestEngine.
6060
6161``` groovy
6262dependencies {
63- testImplementation("org.junit.jupiter:junit-jupiter:5.14.0 ")
63+ testImplementation("org.junit.jupiter:junit-jupiter:5.14.1 ")
6464}
6565```
6666
@@ -71,7 +71,7 @@ on the JUnit Vintage TestEngine implementation similar to the following.
7171``` groovy
7272dependencies {
7373 testImplementation("junit:junit:4.13.2")
74- testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.14.0 ")
74+ testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.14.1 ")
7575}
7676```
7777
You can’t perform that action at this time.
0 commit comments