mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 08:05:05 +00:00
HHH-12164 Upgrade Hibernate Validator used for testing to 6.0.7.Final
This commit is contained in:
parent
574378dc6f
commit
8e25e7f350
@ -15,8 +15,7 @@ dependencies {
|
|||||||
transitive = true
|
transitive = true
|
||||||
}
|
}
|
||||||
// EL libraries are provided scope in Validator
|
// EL libraries are provided scope in Validator
|
||||||
testRuntime( libraries.expression_language_api )
|
testRuntime( libraries.expression_language )
|
||||||
testRuntime( libraries.expression_language_impl )
|
|
||||||
|
|
||||||
if (db.equalsIgnoreCase("oracle")) {
|
if (db.equalsIgnoreCase("oracle")) {
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -59,4 +58,4 @@ mavenPom {
|
|||||||
|
|
||||||
def osgiDescription() {
|
def osgiDescription() {
|
||||||
return mavenPom.description
|
return mavenPom.description
|
||||||
}
|
}
|
||||||
|
@ -94,8 +94,7 @@ dependencies {
|
|||||||
testCompile( libraries.derby )
|
testCompile( libraries.derby )
|
||||||
|
|
||||||
testRuntime( "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final" )
|
testRuntime( "org.jboss.spec.javax.ejb:jboss-ejb-api_3.2_spec:1.0.0.Final" )
|
||||||
testRuntime( libraries.expression_language_api )
|
testRuntime( libraries.expression_language )
|
||||||
testRuntime( libraries.expression_language_impl )
|
|
||||||
testRuntime( 'jaxen:jaxen:1.1' )
|
testRuntime( 'jaxen:jaxen:1.1' )
|
||||||
testRuntime( libraries.javassist )
|
testRuntime( libraries.javassist )
|
||||||
testRuntime( libraries.byteBuddy )
|
testRuntime( libraries.byteBuddy )
|
||||||
@ -243,4 +242,4 @@ test {
|
|||||||
beforeTest { descriptor ->
|
beforeTest { descriptor ->
|
||||||
//println "Starting test: " + descriptor
|
//println "Starting test: " + descriptor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -35,8 +35,7 @@ dependencies {
|
|||||||
transitive = true
|
transitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
testRuntime( libraries.expression_language_api )
|
testRuntime( libraries.expression_language )
|
||||||
testRuntime( libraries.expression_language_impl )
|
|
||||||
|
|
||||||
testRuntime('jaxen:jaxen:1.1')
|
testRuntime('jaxen:jaxen:1.1')
|
||||||
testRuntime(libraries.javassist)
|
testRuntime(libraries.javassist)
|
||||||
|
@ -14,7 +14,9 @@ ext {
|
|||||||
bytemanVersion = '4.0.0-BETA5'
|
bytemanVersion = '4.0.0-BETA5'
|
||||||
infinispanVersion = '8.2.5.Final'
|
infinispanVersion = '8.2.5.Final'
|
||||||
jnpVersion = '5.0.6.CR1'
|
jnpVersion = '5.0.6.CR1'
|
||||||
elVersion = '2.2.4'
|
|
||||||
|
hibernateValidatorVersion = '6.0.7.Final'
|
||||||
|
elVersion = '3.0.1-b08'
|
||||||
|
|
||||||
cdiVersion = '2.0'
|
cdiVersion = '2.0'
|
||||||
weldVersion = '3.0.0.Final'
|
weldVersion = '3.0.0.Final'
|
||||||
@ -109,10 +111,9 @@ ext {
|
|||||||
mockito: 'org.mockito:mockito-core:2.7.5',
|
mockito: 'org.mockito:mockito-core:2.7.5',
|
||||||
mockito_inline: 'org.mockito:mockito-inline:2.7.5',
|
mockito_inline: 'org.mockito:mockito-inline:2.7.5',
|
||||||
|
|
||||||
validator: 'org.hibernate:hibernate-validator:5.2.4.Final',
|
validator: "org.hibernate.validator:hibernate-validator:${hibernateValidatorVersion}",
|
||||||
// EL required by Hibernate Validator at test runtime
|
// EL required by Hibernate Validator at test runtime
|
||||||
expression_language_api: "javax.el:javax.el-api:${elVersion}",
|
expression_language: "org.glassfish:javax.el:${elVersion}",
|
||||||
expression_language_impl: "org.glassfish.web:javax.el:${elVersion}",
|
|
||||||
|
|
||||||
// required by Hibernate Validator at test runtime
|
// required by Hibernate Validator at test runtime
|
||||||
unified_el: "org.glassfish:javax.el:3.0-b07",
|
unified_el: "org.glassfish:javax.el:3.0-b07",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user