Skip to content

Commit 6fa1095

Browse files
committed
Upgrade to JUnit Jupiter 5.2
1 parent ea713cf commit 6fa1095

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ configure(allprojects) { project ->
4747
ext.hsqldbVersion = "2.4.0"
4848
ext.jackson2Version = "2.9.5"
4949
ext.jettyVersion = "9.4.9.v20180320"
50-
ext.junitPlatformVersion = "1.1.1"
51-
ext.junitJupiterVersion = "5.1.1"
52-
ext.junitVintageVersion = "5.1.1"
50+
ext.junitPlatformVersion = "1.2.0"
51+
ext.junitJupiterVersion = "5.2.0"
52+
ext.junitVintageVersion = "5.2.0"
5353
ext.kotlinVersion = "1.2.41"
5454
ext.log4jVersion = "2.11.0"
5555
ext.nettyVersion = "4.1.24.Final"

spring-test/spring-test.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ dependencies {
8181
exclude group: "commons-logging", module: "commons-logging"
8282
}
8383
testCompile('io.projectreactor.ipc:reactor-netty')
84+
testCompile('de.bechte.junit:junit-hierarchicalcontextrunner:4.12.1')
8485
// Pull in the latest JUnit 5 Launcher API and the Vintage engine as well
8586
// so that we can run JUnit 4 tests in IntelliJ IDEA.
86-
testCompile('de.bechte.junit:junit-hierarchicalcontextrunner:4.12.1')
8787
testRuntime("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
8888
testRuntime("org.junit.platform:junit-platform-launcher:${junitPlatformVersion}")
8989
testRuntime("org.junit.vintage:junit-vintage-engine:${junitVintageVersion}")
@@ -118,7 +118,7 @@ task testJUnitJupiter(type: Test) {
118118
}
119119

120120
test {
121-
description = 'Runs JUnit tests.'
121+
description = 'Runs JUnit 4 tests.'
122122
dependsOn testJUnitJupiter, testNG
123123
useJUnit()
124124
scanForTestClasses = false

0 commit comments

Comments
 (0)