Upgrade to Hibernate Validator 6.0.2
Includes latest dependency updates (Netty 4.1.15, Undertow 1.4.19) Issue: SPR-15808
This commit is contained in:
parent
bddd71e705
commit
b122bc6dcc
|
@ -57,7 +57,7 @@ configure(allprojects) { project ->
|
|||
ext.junitVintageVersion = "4.12.0-RC3"
|
||||
ext.kotlinVersion = '1.1.4'
|
||||
ext.log4jVersion = '2.8.2'
|
||||
ext.nettyVersion = "4.1.14.Final"
|
||||
ext.nettyVersion = "4.1.15.Final"
|
||||
ext.okhttp3Version = "3.8.1"
|
||||
ext.reactorVersion = "Bismuth-BUILD-SNAPSHOT"
|
||||
ext.rxjavaVersion = '1.3.0'
|
||||
|
@ -66,7 +66,7 @@ configure(allprojects) { project ->
|
|||
ext.slf4jVersion = "1.7.25"
|
||||
ext.tiles3Version = "3.0.7"
|
||||
ext.tomcatVersion = "8.5.20"
|
||||
ext.undertowVersion = "1.4.18.Final"
|
||||
ext.undertowVersion = "1.4.19.Final"
|
||||
|
||||
ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ dependencies {
|
|||
testCompile(project(":spring-context"))
|
||||
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
|
||||
testCompile("org.slf4j:slf4j-api:${slf4jVersion}")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
|
||||
testRuntime("org.ehcache:jcache:1.0.1")
|
||||
testRuntime("org.ehcache:ehcache:3.3.1")
|
||||
testRuntime("org.glassfish:javax.el:3.0.1-b08")
|
||||
|
|
|
@ -62,7 +62,7 @@ dependencies {
|
|||
testCompile("javax.interceptor:javax.interceptor-api:1.2")
|
||||
testCompile("javax.cache:cache-api:1.0.0")
|
||||
testCompile("org.hibernate:hibernate-core:5.2.10.Final")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
|
||||
// Enable use of the JUnitPlatform Runner
|
||||
testCompile("org.junit.platform:junit-platform-runner:${junitPlatformVersion}")
|
||||
testCompile("org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}")
|
||||
|
|
|
@ -46,7 +46,7 @@ dependencies {
|
|||
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
|
||||
testCompile("javax.xml.bind:jaxb-api:${jaxbVersion}")
|
||||
testCompile("io.projectreactor:reactor-test")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
|
||||
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
|
||||
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
|
||||
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}")
|
||||
|
|
|
@ -63,7 +63,7 @@ dependencies {
|
|||
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}") {
|
||||
exclude group: "javax.servlet", module: "javax.servlet"
|
||||
}
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.1.Final")
|
||||
testCompile("org.hibernate:hibernate-validator:6.0.2.Final")
|
||||
testCompile("org.apache.httpcomponents:httpclient:${httpclientVersion}") {
|
||||
exclude group: "commons-logging", module: "commons-logging"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue