Browse Source

Dependency updates (as appropriate for the 4.0.x line)

pull/579/head
Juergen Hoeller 12 years ago
parent
commit
347b7313b8
  1. 20
      build.gradle

20
build.gradle

@ -17,7 +17,7 @@ configure(allprojects) { project -> @@ -17,7 +17,7 @@ configure(allprojects) { project ->
ext.eclipseLinkVersion = "2.4.2"
ext.groovyVersion = "1.8.9"
ext.hibernate3Version = "3.6.10.Final"
ext.hibernate4Version = "4.2.12.Final"
ext.hibernate4Version = "4.2.14.Final"
ext.hibVal4Version = "4.3.1.Final"
ext.hsqldbVersion = "2.3.2"
ext.jackson1Version = "1.9.13"
@ -30,7 +30,7 @@ configure(allprojects) { project -> @@ -30,7 +30,7 @@ configure(allprojects) { project ->
ext.slf4jVersion = "1.7.7"
ext.tiles2Version = "2.2.2"
ext.tiles3Version = "3.0.4"
ext.tomcatVersion = "8.0.5"
ext.tomcatVersion = "8.0.8"
ext.xstreamVersion = "1.4.7"
ext.gradleScriptDir = "${rootProject.projectDir}/gradle"
@ -398,8 +398,8 @@ project("spring-messaging") { @@ -398,8 +398,8 @@ project("spring-messaging") {
compile(project(":spring-beans"))
compile(project(":spring-core"))
compile(project(":spring-context"))
optional("org.projectreactor:reactor-core:1.1.0.RELEASE")
optional("org.projectreactor:reactor-net:1.1.0.RELEASE")
optional("org.projectreactor:reactor-core:1.1.2.RELEASE")
optional("org.projectreactor:reactor-net:1.1.2.RELEASE")
optional("org.projectreactor:reactor-tcp:1.0.1.RELEASE")
optional("org.eclipse.jetty.websocket:websocket-server:${jettyVersion}") {
exclude group: "javax.servlet", module: "javax.servlet-api"
@ -572,7 +572,7 @@ project("spring-web") { @@ -572,7 +572,7 @@ project("spring-web") {
optional("aopalliance:aopalliance:1.0")
optional("com.caucho:hessian:4.0.7")
optional("commons-fileupload:commons-fileupload:1.3.1")
optional("org.apache.httpcomponents:httpclient:4.3.3")
optional("org.apache.httpcomponents:httpclient:4.3.4")
optional("org.apache.httpcomponents:httpasyncclient:4.0.1")
optional("org.codehaus.jackson:jackson-mapper-asl:${jackson1Version}")
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
@ -632,8 +632,8 @@ project("spring-websocket") { @@ -632,8 +632,8 @@ project("spring-websocket") {
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
testCompile("org.apache.tomcat.embed:tomcat-embed-websocket:${tomcatVersion}")
testCompile("org.apache.tomcat.embed:tomcat-embed-logging-juli:${tomcatVersion}")
testCompile("org.projectreactor:reactor-core:1.1.0.RELEASE")
testCompile("org.projectreactor:reactor-net:1.1.0.RELEASE")
testCompile("org.projectreactor:reactor-core:1.1.2.RELEASE")
testCompile("org.projectreactor:reactor-net:1.1.2.RELEASE")
testCompile("log4j:log4j:1.2.17")
testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}")
}
@ -758,7 +758,7 @@ project("spring-webmvc") { @@ -758,7 +758,7 @@ project("spring-webmvc") {
}
testCompile("javax.validation:validation-api:1.0.0.GA")
testCompile("org.hibernate:hibernate-validator:${hibVal4Version}")
testCompile("org.apache.httpcomponents:httpclient:4.3.3")
testCompile("org.apache.httpcomponents:httpclient:4.3.4")
testCompile("commons-fileupload:commons-fileupload:1.3.1")
testCompile("commons-io:commons-io:1.3")
testCompile("joda-time:joda-time:${jodaVersion}")
@ -902,8 +902,8 @@ project("spring-aspects") { @@ -902,8 +902,8 @@ project("spring-aspects") {
dependencies {
aspects(project(":spring-orm"))
ajc("org.aspectj:aspectjtools:1.8.0") // needed for ajc on JDK 8 only
rt("org.aspectj:aspectjrt:1.8.0") // needed for ajc on JDK 8 only
ajc("org.aspectj:aspectjtools:1.8.1") // needed for ajc on JDK 8 only
rt("org.aspectj:aspectjrt:1.8.1") // needed for ajc on JDK 8 only
compile("org.aspectj:aspectjweaver:${aspectjVersion}") // exposing regular AspectJ version to users
provided("org.eclipse.persistence:javax.persistence:2.0.0")
optional(project(":spring-aop")) // for @Async support

Loading…
Cancel
Save