Upgrade to ASM 5.0.4 (and Hibernate 4.2.19)

Issue: SPR-13039
This commit is contained in:
Juergen Hoeller
2015-05-22 17:55:24 +02:00
parent d5de3867ca
commit 50eef1b979

View File

@@ -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") {
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) {
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}")
}