Skip to content

Commit 5ccbc80

Browse files
committed
Upgraded to AspectJ 1.8.0.M1
Issue: SPR-10558
1 parent faf54f3 commit 5ccbc80

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

build.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,7 @@ configure(allprojects) { project ->
1212
group = "org.springframework"
1313
version = qualifyVersionIfNecessary(version)
1414

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"
2116
ext.hsqldbVersion = "1.8.0.10"
2217
ext.junitVersion = "4.11"
2318
ext.slf4jVersion = "1.6.1"
@@ -70,6 +65,7 @@ configure(allprojects) { project ->
7065

7166
repositories {
7267
maven { url "http://repo.springsource.org/libs-release" }
68+
maven { url "http://maven.springframework.org/milestone" }
7369
}
7470

7571
dependencies {
@@ -356,7 +352,12 @@ project("spring-oxm") {
356352
description = "Spring Object/XML Marshalling"
357353
apply from: "oxm.gradle"
358354

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 {
360361
// necessary to avoid java.lang.VerifyError on jibx compilation
361362
// see http://jira.codehaus.org/browse/JIBX-465
362363
sourceCompatibility=1.6

0 commit comments

Comments
 (0)