Skip to content

Commit 3f85efe

Browse files
committed
Latest dependency updates (EhCache 2.10.2, HtmlUnit 2.21, JOpt Simple 5.0.1, JRuby 1.7.25, Quartz 2.2.3, Undertow 1.3.22)
1 parent 08ddd1b commit 3f85efe

File tree

1 file changed

+15
-20
lines changed

1 file changed

+15
-20
lines changed

build.gradle

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ configure(allprojects) { project ->
3434
ext.aspectjVersion = "1.8.9"
3535
ext.caffeineVersion = "2.3.0"
3636
ext.eclipselinkVersion = "2.4.2"
37-
ext.ehcacheVersion = "2.10.1"
37+
ext.ehcacheVersion = "2.10.2"
3838
ext.ehcachejcacheVersion = "1.0.1"
3939
ext.ehcache3Version = "3.0.0"
40-
ext.ejbApiVersion = "3.0"
40+
ext.ejbVersion = "3.0"
4141
ext.fileuploadVersion = "1.3.1"
4242
ext.freemarkerVersion = "2.3.23"
4343
ext.groovyVersion = "2.4.6"
@@ -50,17 +50,14 @@ configure(allprojects) { project ->
5050
ext.hibval4Version = "4.3.2.Final"
5151
ext.hibval5Version = "5.2.4.Final"
5252
ext.hsqldbVersion = "2.3.3"
53-
ext.htmlunitVersion = "2.20"
5453
ext.httpasyncVersion = "4.1.1"
5554
ext.httpclientVersion = "4.5.2"
5655
ext.jackson2Version = "2.7.4"
5756
ext.jasperreportsVersion = "6.2.1"
5857
ext.javamailVersion = "1.5.5"
5958
ext.jettyVersion = "9.3.8.v20160314"
6059
ext.jodaVersion = "2.9.3"
61-
ext.jrubyVersion = "1.7.24" // JRuby 9000 only supported through JSR-223 (StandardScriptFactory)
62-
ext.jsonassertVersion = "1.3.0"
63-
ext.jsonpathVersion = "2.2.0"
60+
ext.jrubyVersion = "1.7.25" // JRuby 9000 only supported through JSR-223 (StandardScriptFactory)
6461
ext.jtaVersion = "1.2"
6562
ext.junitVersion = "4.12"
6663
ext.nettyVersion = "4.1.0.CR7"
@@ -70,7 +67,6 @@ configure(allprojects) { project ->
7067
ext.poiVersion = "3.14"
7168
ext.reactorVersion = "2.0.8.RELEASE"
7269
ext.romeVersion = "1.6.0"
73-
ext.seleniumVersion = "2.53.0"
7470
ext.slf4jVersion = "1.7.21"
7571
ext.snakeyamlVersion = "1.17"
7672
ext.snifferVersion = "1.15"
@@ -79,8 +75,7 @@ configure(allprojects) { project ->
7975
ext.tiles3Version = "3.0.5"
8076
ext.tomcatVersion = "8.0.33"
8177
ext.tyrusVersion = "1.3.5" // constrained by WebLogic 12.1.3 support
82-
ext.undertowVersion = "1.3.21.Final"
83-
ext.woodstoxVersion = "5.0.2"
78+
ext.undertowVersion = "1.3.22.Final"
8479
ext.xmlunitVersion = "1.6"
8580
ext.xstreamVersion = "1.4.9"
8681

@@ -355,11 +350,11 @@ project("spring-core") {
355350
compile("commons-logging:commons-logging:1.2")
356351
optional("commons-codec:commons-codec:1.10")
357352
optional("org.aspectj:aspectjweaver:${aspectjVersion}")
358-
optional("net.sf.jopt-simple:jopt-simple:5.0")
353+
optional("net.sf.jopt-simple:jopt-simple:5.0.1")
359354
optional("log4j:log4j:1.2.17")
360355
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
361356
testCompile("xmlunit:xmlunit:${xmlunitVersion}")
362-
testCompile("com.fasterxml.woodstox:woodstox-core:${woodstoxVersion}") {
357+
testCompile("com.fasterxml.woodstox:woodstox-core:5.0.2") {
363358
exclude group: "stax", module: "stax-api"
364359
}
365360
}
@@ -479,7 +474,7 @@ project("spring-context") {
479474
compile(files(project(":spring-core").cglibRepackJar))
480475
optional(project(":spring-instrument"))
481476
optional("javax.inject:javax.inject:1")
482-
optional("javax.ejb:ejb-api:${ejbApiVersion}")
477+
optional("javax.ejb:ejb-api:${ejbVersion}")
483478
optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api:1.0")
484479
optional("javax.money:money-api:1.0")
485480
optional("org.eclipse.persistence:javax.persistence:2.0.0")
@@ -549,7 +544,7 @@ project("spring-tx") {
549544
optional(project(":spring-context")) // for JCA, @EnableTransactionManagement
550545
optional("javax.transaction:javax.transaction-api:${jtaVersion}")
551546
optional("javax.resource:connector-api:1.5")
552-
optional("javax.ejb:ejb-api:${ejbApiVersion}")
547+
optional("javax.ejb:ejb-api:${ejbVersion}")
553548
optional("com.ibm.websphere:uow:6.0.2.17")
554549
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
555550
testCompile("org.eclipse.persistence:javax.persistence:2.0.0")
@@ -646,7 +641,7 @@ project("spring-context-support") {
646641
optional("com.google.guava:guava:${guavaVersion}")
647642
optional("com.github.ben-manes.caffeine:caffeine:${caffeineVersion}")
648643
optional("net.sf.ehcache:ehcache:${ehcacheVersion}")
649-
optional("org.quartz-scheduler:quartz:2.2.2")
644+
optional("org.quartz-scheduler:quartz:2.2.3")
650645
optional("org.codehaus.fabric3.api:commonj:1.1.0")
651646
optional("org.apache.velocity:velocity:1.7")
652647
optional("org.freemarker:freemarker:${freemarkerVersion}")
@@ -1012,16 +1007,16 @@ project("spring-test") {
10121007
optional("org.aspectj:aspectjweaver:${aspectjVersion}")
10131008
optional("org.codehaus.groovy:groovy-all:${groovyVersion}")
10141009
optional("org.hamcrest:hamcrest-core:${hamcrestVersion}")
1015-
optional("org.seleniumhq.selenium:selenium-java:${seleniumVersion}")
1016-
optional("org.seleniumhq.selenium:htmlunit-driver:${htmlunitVersion}")
1017-
optional("net.sourceforge.htmlunit:htmlunit:${htmlunitVersion}")
10181010
optional("xmlunit:xmlunit:${xmlunitVersion}")
1019-
optional("org.skyscreamer:jsonassert:${jsonassertVersion}")
1020-
optional("com.jayway.jsonpath:json-path:${jsonpathVersion}")
1011+
optional("net.sourceforge.htmlunit:htmlunit:2.21")
1012+
optional("org.seleniumhq.selenium:htmlunit-driver:2.20")
1013+
optional("org.seleniumhq.selenium:selenium-java:2.53.0")
1014+
optional("org.skyscreamer:jsonassert:1.3.0")
1015+
optional("com.jayway.jsonpath:json-path:2.2.0")
10211016
testCompile(project(":spring-context-support"))
10221017
testCompile(project(":spring-oxm"))
10231018
testCompile("javax.mail:javax.mail-api:${javamailVersion}")
1024-
testCompile("javax.ejb:ejb-api:${ejbApiVersion}")
1019+
testCompile("javax.ejb:ejb-api:${ejbVersion}")
10251020
testCompile("org.hibernate:hibernate-core:${hibernate4Version}")
10261021
testCompile("org.hibernate:hibernate-entitymanager:${hibernate4Version}")
10271022
testCompile("org.hibernate:hibernate-validator:${hibval5Version}")

0 commit comments

Comments
 (0)