Browse Source

Upgrade to ASM 5.0.4 (and Hibernate 4.2.19)

Issue: SPR-13039
pull/806/head
Juergen Hoeller 11 years ago
parent
commit
50eef1b979
  1. 8
      build.gradle

8
build.gradle

@ -182,7 +182,7 @@ project("spring-core") { @@ -182,7 +182,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.3"
def asmVersion = "5.0.4"
def cglibVersion = "3.1"
configurations {
@ -562,8 +562,8 @@ project("spring-orm-hibernate4") { @@ -562,8 +562,8 @@ project("spring-orm-hibernate4") {
provided(project(":spring-jdbc"))
provided(project(":spring-tx"))
optional(project(":spring-web"))
optional("org.hibernate:hibernate-core:4.2.15.Final")
optional("org.hibernate:hibernate-entitymanager:4.2.15.Final")
optional("org.hibernate:hibernate-core:4.2.19.Final")
optional("org.hibernate:hibernate-entitymanager:4.2.19.Final")
optional("javax.servlet:servlet-api:2.5")
}
}
@ -879,7 +879,7 @@ configure(rootProject) { @@ -879,7 +879,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.15.Final")
testCompile("org.hibernate:hibernate-core:4.2.19.Final")
testCompile("hsqldb:hsqldb:${hsqldbVersion}")
}

Loading…
Cancel
Save