Skip to content

Commit b122bc6

Browse files
committed
Upgrade to Hibernate Validator 6.0.2
Includes latest dependency updates (Netty 4.1.15, Undertow 1.4.19) Issue: SPR-15808
1 parent bddd71e commit b122bc6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ configure(allprojects) { project ->
5757
ext.junitVintageVersion = "4.12.0-RC3"
5858
ext.kotlinVersion = '1.1.4'
5959
ext.log4jVersion = '2.8.2'
60-
ext.nettyVersion = "4.1.14.Final"
60+
ext.nettyVersion = "4.1.15.Final"
6161
ext.okhttp3Version = "3.8.1"
6262
ext.reactorVersion = "Bismuth-BUILD-SNAPSHOT"
6363
ext.rxjavaVersion = '1.3.0'
@@ -66,7 +66,7 @@ configure(allprojects) { project ->
6666
ext.slf4jVersion = "1.7.25"
6767
ext.tiles3Version = "3.0.7"
6868
ext.tomcatVersion = "8.5.20"
69-
ext.undertowVersion = "1.4.18.Final"
69+
ext.undertowVersion = "1.4.19.Final"
7070

7171
ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
7272

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
testCompile(project(":spring-context"))
1818
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
1919
testCompile("org.slf4j:slf4j-api:${slf4jVersion}")
20-
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
20+
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
2121
testRuntime("org.ehcache:jcache:1.0.1")
2222
testRuntime("org.ehcache:ehcache:3.3.1")
2323
testRuntime("org.glassfish:javax.el:3.0.1-b08")

spring-test/spring-test.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dependencies {
6262
testCompile("javax.interceptor:javax.interceptor-api:1.2")
6363
testCompile("javax.cache:cache-api:1.0.0")
6464
testCompile("org.hibernate:hibernate-core:5.2.10.Final")
65-
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
65+
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
6666
// Enable use of the JUnitPlatform Runner
6767
testCompile("org.junit.platform:junit-platform-runner:${junitPlatformVersion}")
6868
testCompile("org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}")

spring-webflux/spring-webflux.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies {
4646
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4747
testCompile("javax.xml.bind:jaxb-api:${jaxbVersion}")
4848
testCompile("io.projectreactor:reactor-test")
49-
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
49+
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
5050
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
5151
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
5252
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}")

spring-webmvc/spring-webmvc.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dependencies {
6363
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}") {
6464
exclude group: "javax.servlet", module: "javax.servlet"
6565
}
66-
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
66+
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
6767
testCompile("org.apache.httpcomponents:httpclient:${httpclientVersion}") {
6868
exclude group: "commons-logging", module: "commons-logging"
6969
}

0 commit comments

Comments
 (0)