Browse Source

Upgrade to ASM 5.0.3 (and Hibernate 4.2.14)

Issue: SPR-11889
pull/689/head
Juergen Hoeller 12 years ago
parent
commit
386b757e84
  1. 8
      build.gradle

8
build.gradle

@ -176,7 +176,7 @@ project("spring-core") { @@ -176,7 +176,7 @@ project("spring-core") {
// avoids including two different copies of asm unnecessarily. If however future cglib
// versions drift from the version of asm used by Spring internally, this duplication
// will become necessary.
def asmVersion = "5.0.2"
def asmVersion = "5.0.3"
def cglibVersion = "3.1"
configurations {
@ -556,8 +556,8 @@ project("spring-orm-hibernate4") { @@ -556,8 +556,8 @@ project("spring-orm-hibernate4") {
provided(project(":spring-jdbc"))
provided(project(":spring-tx"))
optional(project(":spring-web"))
optional("org.hibernate:hibernate-core:4.2.12.Final")
optional("org.hibernate:hibernate-entitymanager:4.2.12.Final")
optional("org.hibernate:hibernate-core:4.2.14.Final")
optional("org.hibernate:hibernate-entitymanager:4.2.14.Final")
optional("javax.servlet:servlet-api:2.5")
}
}
@ -873,7 +873,7 @@ configure(rootProject) { @@ -873,7 +873,7 @@ configure(rootProject) {
testCompile("javax.inject:javax.inject:1")
testCompile("javax.resource:connector-api:1.5")
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
testCompile("org.hibernate:hibernate-core:4.2.12.Final")
testCompile("org.hibernate:hibernate-core:4.2.14.Final")
testCompile("hsqldb:hsqldb:${hsqldbVersion}")
}

Loading…
Cancel
Save