@@ -36,14 +36,15 @@ configure(allprojects) { project ->
36
36
ext. groovyVersion = " 2.4.3"
37
37
ext. gsonVersion = " 2.3.1"
38
38
ext. hibernate3Version = " 3.6.10.Final"
39
- ext. hibernate4Version = " 4.3.8 .Final"
39
+ ext. hibernate4Version = " 4.3.9 .Final"
40
40
ext. hibval4Version = " 4.3.2.Final"
41
41
ext. hibval5Version = " 5.2.0.Beta1" // to be upgraded to 5.2 final in time for Spring Framework 4.2 GA
42
42
ext. hsqldbVersion = " 2.3.2"
43
43
ext. httpclientVersion = " 4.4"
44
44
ext. httpasyncVersion = " 4.0.2"
45
45
ext. jackson2Version = " 2.5.2"
46
46
ext. jasperreportsVersion = " 6.0.3"
47
+ ext. javamailVersion = " 1.5.3"
47
48
ext. jettyVersion = " 9.2.10.v20150310"
48
49
ext. jodaVersion = " 2.7"
49
50
ext. jtaVersion = " 1.2"
@@ -624,7 +625,7 @@ project("spring-context-support") {
624
625
compile(project(" :spring-context" ))
625
626
optional(project(" :spring-jdbc" )) // for Quartz support
626
627
optional(project(" :spring-tx" )) // for Quartz support
627
- optional(" javax.mail:javax.mail-api:1.5.2 " )
628
+ optional(" javax.mail:javax.mail-api:${ javamailVersion } " )
628
629
optional(" javax.cache:cache-api:1.0.0" )
629
630
optional(" com.google.guava:guava:18.0" )
630
631
optional(" net.sf.ehcache:ehcache:${ ehcacheVersion} " )
@@ -647,7 +648,7 @@ project("spring-context-support") {
647
648
testCompile(" commons-digester:commons-digester:1.8.1" ) // for Velocity/JasperReports
648
649
testCompile(" org.hsqldb:hsqldb:${ hsqldbVersion} " )
649
650
testCompile(" org.slf4j:slf4j-api:${ slf4jVersion} " )
650
- testRuntime(" com.sun.mail:javax.mail:1.5.2 " )
651
+ testRuntime(" com.sun.mail:javax.mail:${ javamailVersion } " )
651
652
testCompile(" org.ehcache:jcache:${ ehcachejcacheVersion} " )
652
653
// testCompile("org.ehcache:ehcache:3.0.0.m1") // alternative to ehcache-jcache above
653
654
}
@@ -703,15 +704,15 @@ project("spring-web") {
703
704
optional(" log4j:log4j:1.2.17" )
704
705
optional(" com.googlecode.protobuf-java-format:protobuf-java-format:1.2" )
705
706
optional(" com.google.protobuf:protobuf-java:${ protobufVersion} " )
706
- optional(" javax.mail:javax.mail-api:1.5.2 " )
707
+ optional(" javax.mail:javax.mail-api:${ javamailVersion } " )
707
708
testCompile(project(" :spring-context-support" )) // for JafMediaTypeFactory
708
709
testCompile(" xmlunit:xmlunit:${ xmlunitVersion} " )
709
710
testCompile(" org.slf4j:slf4j-jcl:${ slf4jVersion} " )
710
711
testCompile(" org.apache.taglibs:taglibs-standard-jstlel:1.2.1" ) {
711
712
exclude group : " org.apache.taglibs" , module : " taglibs-standard-spec"
712
713
}
713
714
testCompile(" com.fasterxml.jackson.datatype:jackson-datatype-joda:${ jackson2Version} " )
714
- testRuntime(" com.sun.mail:javax.mail:1.5.2 " )
715
+ testRuntime(" com.sun.mail:javax.mail:${ javamailVersion } " )
715
716
}
716
717
}
717
718
@@ -979,7 +980,7 @@ project("spring-test") {
979
980
optional(" xmlunit:xmlunit:${ xmlunitVersion} " )
980
981
testCompile(project(" :spring-context-support" ))
981
982
testCompile(project(" :spring-oxm" ))
982
- testCompile(" javax.mail:javax.mail-api:1.5.2 " )
983
+ testCompile(" javax.mail:javax.mail-api:${ javamailVersion } " )
983
984
testCompile(" javax.ejb:ejb-api:3.0" )
984
985
testCompile(" org.hibernate:hibernate-core:${ hibernate4Version} " )
985
986
testCompile(" org.hibernate:hibernate-entitymanager:${ hibernate4Version} " )
@@ -1044,7 +1045,7 @@ project("spring-aspects") {
1044
1045
optional(" javax.cache:cache-api:1.0.0" )
1045
1046
testCompile(project(" :spring-core" )) // for CodeStyleAspect
1046
1047
testCompile(project(" :spring-test" ))
1047
- testCompile(" javax.mail:javax.mail-api:1.5.2 " )
1048
+ testCompile(" javax.mail:javax.mail-api:${ javamailVersion } " )
1048
1049
}
1049
1050
1050
1051
eclipse. project {
0 commit comments