Skip to content

Commit cf31f02

Browse files
committed
Upgrade to Hibernate Validator 6.0.13 and EclipseLink 2.7.3
Also includes Hibernate ORM 5.1.16 for integration tests.
1 parent 02616fb commit cf31f02

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ configure(rootProject) {
279279
testCompile("javax.servlet:javax.servlet-api:3.1.0")
280280
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
281281
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
282-
testCompile("org.hibernate:hibernate-core:5.1.14.Final")
282+
testCompile("org.hibernate:hibernate-core:5.1.16.Final")
283283
}
284284

285285
artifacts {

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.10.Final")
19+
testCompile("org.hibernate:hibernate-validator:6.0.13.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-orm/spring-orm.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
optional(project(":spring-aop"))
99
optional(project(":spring-context"))
1010
optional(project(":spring-web"))
11-
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.1")
11+
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.3")
1212
optional("org.hibernate:hibernate-core:5.2.17.Final")
1313
optional("javax.servlet:javax.servlet-api:3.1.0")
1414
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")

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.1")
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.10.Final")
63+
testCompile("org.hibernate:hibernate-validator:6.0.13.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
@@ -40,7 +40,7 @@ dependencies {
4040
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4141
testCompile("javax.xml.bind:jaxb-api:2.3.0")
4242
testCompile("com.fasterxml:aalto-xml:1.0.0")
43-
testCompile("org.hibernate:hibernate-validator:6.0.10.Final")
43+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
4444
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
4545
testCompile("io.projectreactor:reactor-test")
4646
testCompile("io.undertow:undertow-core:${undertowVersion}")

spring-webmvc/spring-webmvc.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ dependencies {
6565
exclude group: "xerces", module: "xercesImpl"
6666
}
6767
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
68-
testCompile("org.hibernate:hibernate-validator:6.0.10.Final")
68+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
6969
testCompile("io.projectreactor:reactor-core")
7070
testCompile("io.reactivex:rxjava:${rxjavaVersion}")
7171
testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")

0 commit comments

Comments
 (0)