Upgrade to ASM 5.0.3 (and Hibernate 4.2.14)

Issue: SPR-11889
This commit is contained in:
Juergen Hoeller
2014-07-01 14:45:04 +02:00
parent c033f889bf
commit 386b757e84

View File

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