@@ -336,7 +336,7 @@ project("spring-context") {
336
336
optional(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
337
337
optional(" org.codehaus.groovy:groovy-all:1.8.9" )
338
338
optional(" org.beanshell:bsh:2.0b4" )
339
- optional(" org.jruby:jruby:1.7.10 " )
339
+ optional(" org.jruby:jruby:1.7.12 " )
340
340
testCompile(" javax.inject:javax.inject-tck:1" )
341
341
testCompile(" commons-dbcp:commons-dbcp:1.3" )
342
342
testCompile(" org.slf4j:slf4j-api:${ slf4jVersion} " )
@@ -382,14 +382,24 @@ project("spring-oxm") {
382
382
dependencies {
383
383
compile(project(" :spring-beans" ))
384
384
compile(project(" :spring-core" ))
385
- optional(" org.codehaus.castor:castor-xml:1.3.2" )
386
- optional(" org.apache.xmlbeans:xmlbeans:2.6.0" )
387
- optional(" com.thoughtworks.xstream:xstream:1.4.7" )
385
+ optional(" org.codehaus.castor:castor-xml:1.3.3" ) {
386
+ exclude group : ' stax' , module : ' stax-api'
387
+ exclude group : " org.springframework" , module : " spring-context"
388
+ }
389
+ optional(" org.apache.xmlbeans:xmlbeans:2.6.0" ) {
390
+ exclude group : ' stax' , module : ' stax-api'
391
+ }
392
+ optional(" com.thoughtworks.xstream:xstream:1.4.7" ) {
393
+ exclude group : ' xpp3' , module : ' xpp3_min'
394
+ exclude group : ' xmlpull' , module : ' xmlpull'
395
+ }
388
396
optional(" org.jibx:jibx-run:1.2.5" )
389
397
testCompile(project(" :spring-context" ))
390
398
testCompile(" xmlunit:xmlunit:1.3" )
391
399
testCompile(" xmlpull:xmlpull:1.1.3.4a" )
392
- testCompile(" org.codehaus.jettison:jettison:1.0.1" )
400
+ testCompile(" org.codehaus.jettison:jettison:1.0.1" ) {
401
+ exclude group : ' stax' , module : ' stax-api'
402
+ }
393
403
testCompile(files(genCastor. classesDir). builtBy(genCastor))
394
404
testCompile(files(genJaxb. classesDir). builtBy(genJaxb))
395
405
testCompile(files(genXmlbeans. classesDir). builtBy(genXmlbeans))
@@ -426,7 +436,7 @@ project("spring-jdbc") {
426
436
optional(" org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1" )
427
437
optional(" c3p0:c3p0:0.9.1.2" )
428
438
optional(" hsqldb:hsqldb:${ hsqldbVersion} " )
429
- optional(" com.h2database:h2:1.0.71 " )
439
+ optional(" com.h2database:h2:1.0.79 " )
430
440
optional(" org.apache.derby:derby:10.5.3.0_1" )
431
441
optional(" org.apache.derby:derbyclient:10.5.3.0_1" )
432
442
}
@@ -508,8 +518,7 @@ project("spring-orm") {
508
518
description = " Spring Object/Relational Mapping"
509
519
510
520
compileTestJava {
511
- // necessary to avoid java.lang.VerifyError on toplink compilation
512
- // TODO: remove this block when we remove toplink
521
+ // necessary to avoid java.lang.VerifyError on TopLink compilation
513
522
sourceCompatibility= 1.6
514
523
targetCompatibility= 1.6
515
524
}
@@ -867,7 +876,7 @@ configure(rootProject) {
867
876
testCompile(" javax.inject:javax.inject:1" )
868
877
testCompile(" javax.resource:connector-api:1.5" )
869
878
testCompile(" org.aspectj:aspectjweaver:${ aspectjVersion} " )
870
- testCompile(" org.hibernate:hibernate-core:4.2.11 .Final" )
879
+ testCompile(" org.hibernate:hibernate-core:4.2.12 .Final" )
871
880
testCompile(" hsqldb:hsqldb:${ hsqldbVersion} " )
872
881
}
873
882
@@ -1038,7 +1047,7 @@ configure(rootProject) {
1038
1047
1039
1048
task wrapper(type : Wrapper ) {
1040
1049
description = " Generates gradlew[.bat] scripts"
1041
- gradleVersion = " 1.11 "
1050
+ gradleVersion = " 1.12 "
1042
1051
1043
1052
doLast() {
1044
1053
def gradleOpts = " -XX:MaxPermSize=1024m -Xmx1024m"
0 commit comments