Skip to content

Commit de38af6

Browse files
committed
Upgrade to JUnit Jupiter 5.3 RC1 (and Jetty 9.4.12 RC1)
Includes Groovy 2.5.2, Undertow 2.0.12, Hibernate Validator 6.0.12. Issue: SPR-17129
1 parent 3e4d305 commit de38af6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ ext {
3030

3131
aspectjVersion = "1.9.1"
3232
freemarkerVersion = "2.3.28"
33-
groovyVersion = "2.5.1"
33+
groovyVersion = "2.5.2"
3434
hsqldbVersion = "2.4.1"
3535
jackson2Version = "2.9.6"
36-
jettyVersion = "9.4.11.v20180605"
37-
junitPlatformVersion = "1.2.0"
38-
junitJupiterVersion = "5.2.0"
39-
junitVintageVersion = "5.2.0"
36+
jettyVersion = "9.4.12.RC1"
37+
junitPlatformVersion = "1.3.0-RC1"
38+
junitJupiterVersion = "5.3.0-RC1"
39+
junitVintageVersion = "5.3.0-RC1"
4040
kotlinVersion = "1.2.60"
4141
log4jVersion = "2.11.1"
4242
nettyVersion = "4.1.28.Final"
@@ -47,7 +47,7 @@ ext {
4747
slf4jVersion = "1.7.25" // spring-jcl + consistent 3rd party deps
4848
tiles3Version = "3.0.8"
4949
tomcatVersion = "9.0.10"
50-
undertowVersion = "2.0.11.Final"
50+
undertowVersion = "2.0.12.Final"
5151

5252
gradleScriptDir = "${rootProject.projectDir}/gradle"
5353
withoutJclOverSlf4J = {

spring-context-support/spring-context-support.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies {
1616
optional("org.freemarker:freemarker:${freemarkerVersion}")
1717
testCompile(project(":spring-context"))
1818
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
19-
testCompile("org.hibernate:hibernate-validator:6.0.11.Final")
19+
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
2020
testCompile("javax.annotation:javax.annotation-api:1.3.2")
2121
testRuntime("org.ehcache:jcache:1.0.1")
2222
testRuntime("org.ehcache:ehcache:3.4.0")

spring-test/spring-test.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
testCompile("javax.interceptor:javax.interceptor-api:1.2.2")
6161
testCompile("javax.mail:javax.mail-api:1.6.1")
6262
testCompile("org.hibernate:hibernate-core:5.2.17.Final")
63-
testCompile("org.hibernate:hibernate-validator:6.0.11.Final")
63+
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
6464
// Enable use of the JUnit Platform Runner
6565
testCompile("org.junit.platform:junit-platform-runner:${junitPlatformVersion}")
6666
testCompile("org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}")

spring-webflux/spring-webflux.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies {
4141
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4242
optional("com.google.protobuf:protobuf-java-util:3.6.1")
4343
testCompile("javax.xml.bind:jaxb-api:2.3.0")
44-
testCompile("org.hibernate:hibernate-validator:6.0.11.Final")
44+
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
4545
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
4646
testCompile("io.projectreactor:reactor-test")
4747
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")

spring-webmvc/spring-webmvc.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050
testCompile("org.eclipse.jetty:jetty-server") {
5151
exclude group: "javax.servlet", module: "javax.servlet"
5252
}
53-
testCompile("org.hibernate:hibernate-validator:6.0.11.Final")
53+
testCompile("org.hibernate:hibernate-validator:6.0.12.Final")
5454
testCompile("org.apache.httpcomponents:httpclient:4.5.6") {
5555
exclude group: "commons-logging", module: "commons-logging"
5656
}

0 commit comments

Comments
 (0)