@@ -12,12 +12,7 @@ configure(allprojects) { project ->
12
12
group = " org.springframework"
13
13
version = qualifyVersionIfNecessary(version)
14
14
15
- // The following is a work-around until the Gradle build uses
16
- // Ant 1.9.x by default. This is necessary to avoid the
17
- // "Class not found: javac1.8" issue with Ant versions prior to 1.9.x
18
- ant. properties[" build.compiler" ] = " javac1.7"
19
-
20
- ext. aspectjVersion = " 1.7.2"
15
+ ext. aspectjVersion = " 1.8.0.M1"
21
16
ext. hsqldbVersion = " 1.8.0.10"
22
17
ext. junitVersion = " 4.11"
23
18
ext. slf4jVersion = " 1.6.1"
@@ -70,6 +65,7 @@ configure(allprojects) { project ->
70
65
71
66
repositories {
72
67
maven { url " http://repo.springsource.org/libs-release" }
68
+ maven { url " http://maven.springframework.org/milestone" }
73
69
}
74
70
75
71
dependencies {
@@ -356,7 +352,12 @@ project("spring-oxm") {
356
352
description = " Spring Object/XML Marshalling"
357
353
apply from : " oxm.gradle"
358
354
359
- compileTestJava {
355
+ // The following is a work-around until the Gradle build uses
356
+ // Ant 1.9.x by default. This is necessary to avoid the genCastor
357
+ // "Class not found: javac1.8" issue with Ant versions prior to 1.9.x
358
+ ant. properties[" build.compiler" ] = " javac1.7"
359
+
360
+ compileTestJava {
360
361
// necessary to avoid java.lang.VerifyError on jibx compilation
361
362
// see http://jira.codehaus.org/browse/JIBX-465
362
363
sourceCompatibility= 1.6
0 commit comments