diff --git a/spring-aspects/aspects.gradle b/spring-aspects/aspects.gradle index faea8f28553..59a0ae615f7 100644 --- a/spring-aspects/aspects.gradle +++ b/spring-aspects/aspects.gradle @@ -61,7 +61,7 @@ compileTestJava { ant.taskdef(resource: "org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties", classpath: configurations.ajc.asPath) - ant.iajc(source: compileJava.sourceCompatibility, target: compileJava.targetCompatibility, + ant.iajc(source: sourceCompatibility, target: targetCompatibility, maxmem: "1024m", fork: "true", Xlint: "ignore", destDir: outputDir.absolutePath, aspectPath: jar.archivePath, diff --git a/spring-oxm/oxm.gradle b/spring-oxm/oxm.gradle index b467c49f90e..b59008ce842 100644 --- a/spring-oxm/oxm.gradle +++ b/spring-oxm/oxm.gradle @@ -8,8 +8,8 @@ dependencies { castor "org.codehaus.castor:castor-anttasks:1.2" castor "velocity:velocity:1.5" xjc "com.sun.xml.bind:jaxb-xjc:2.1.7" - xmlbeans "org.apache.xmlbeans:xmlbeans:2.4.0" - jibx "org.jibx:jibx-bind:1.2.3" + xmlbeans "org.apache.xmlbeans:xmlbeans:2.6.0" + jibx "org.jibx:jibx-bind:1.2.5" jibx "bcel:bcel:5.1" } @@ -113,7 +113,7 @@ task genXmlbeans { // add jibx binding to the normal test compilation process // INCOMPATIBLE WITH OPENJDK 8 b89+ def jibxEnabled = project.properties.get("testGroups")?.toLowerCase()?.split(",")?.contains("custom_compilation") -if(jibxEnabled) { +if (jibxEnabled) { compileTestJava { def bindingXml = "${projectDir}/src/test/resources/org/springframework/oxm/jibx/binding.xml" @@ -131,4 +131,4 @@ if(jibxEnabled) { } } } -} \ No newline at end of file +}