@@ -2,6 +2,7 @@ description = "Spring TestContext Framework"
2
2
3
3
dependencyManagement {
4
4
imports {
5
+ mavenBom " org.junit:junit-bom:${ junit5Version} "
5
6
mavenBom " io.projectreactor:reactor-bom:${ reactorVersion} "
6
7
mavenBom " io.netty:netty-bom:${ nettyVersion} "
7
8
}
@@ -27,8 +28,8 @@ dependencies {
27
28
optional(" javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:1.2.1" )
28
29
optional(" javax.xml.bind:jaxb-api:2.3.0" )
29
30
optional(" javax.websocket:javax.websocket-api:1.1" )
30
- optional(" junit:junit:4.12" )
31
- optional(" org.junit.jupiter:junit-jupiter-api: ${ junitJupiterVersion } " )
31
+ optional(' junit:junit:4.12' )
32
+ optional(' org.junit.jupiter:junit-jupiter-api' )
32
33
optional(" org.testng:testng:6.14.3" )
33
34
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
34
35
optional(" org.codehaus.groovy:groovy-all:${ groovyVersion} " )
@@ -62,8 +63,8 @@ dependencies {
62
63
testCompile(" org.hibernate:hibernate-core:5.2.17.Final" )
63
64
testCompile(" org.hibernate:hibernate-validator:6.0.12.Final" )
64
65
// Enable use of the JUnit Platform Runner
65
- testCompile(" org.junit.platform:junit-platform-runner: ${ junitPlatformVersion } " )
66
- testCompile(" org.junit.jupiter:junit-jupiter-params: ${ junitJupiterVersion } " )
66
+ testCompile(' org.junit.platform:junit-platform-runner' )
67
+ testCompile(' org.junit.jupiter:junit-jupiter-params' )
67
68
testCompile(" com.fasterxml.jackson.core:jackson-databind:${ jackson2Version} " )
68
69
testCompile(" com.thoughtworks.xstream:xstream:1.4.10" )
69
70
testCompile(" com.rometools:rome:1.11.0" )
@@ -78,9 +79,9 @@ dependencies {
78
79
testCompile(' de.bechte.junit:junit-hierarchicalcontextrunner:4.12.1' )
79
80
// Pull in the latest JUnit 5 Launcher API and the Vintage engine as well
80
81
// so that we can run JUnit 4 tests in IntelliJ IDEA.
81
- testRuntime(" org.junit.jupiter:junit-jupiter-engine: ${ junitJupiterVersion } " )
82
- testRuntime(" org.junit.platform:junit-platform-launcher: ${ junitPlatformVersion } " )
83
- testRuntime(" org.junit.vintage:junit-vintage-engine: ${ junitVintageVersion } " )
82
+ testRuntime(' org.junit.jupiter:junit-jupiter-engine' )
83
+ testRuntime(' org.junit.platform:junit-platform-launcher' )
84
+ testRuntime(' org.junit.vintage:junit-vintage-engine' )
84
85
testRuntime(" org.glassfish:javax.el:3.0.1-b08" )
85
86
testRuntime(" com.sun.xml.bind:jaxb-core:2.3.0.1" )
86
87
testRuntime(" com.sun.xml.bind:jaxb-impl:2.3.0.1" )
0 commit comments