From 391ebc8eda268e901ee931804e61d241b854c0e8 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 17 Jan 2017 14:00:15 +0100 Subject: [PATCH] Correct reference to XJC classpath (cherry picked from commit 54da4a8) --- spring-oxm/oxm.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-oxm/oxm.gradle b/spring-oxm/oxm.gradle index f232e8972ce..e006e7feef4 100644 --- a/spring-oxm/oxm.gradle +++ b/spring-oxm/oxm.gradle @@ -4,6 +4,7 @@ configurations { xmlbeans jibx } + dependencies { castor "org.codehaus.castor:castor-anttasks:1.4.1" jibx "org.jibx:jibx-bind:1.2.6" @@ -75,7 +76,7 @@ task genJaxb { javac(destdir: classesDir, source: 1.6, target: 1.6, debug: true, debugLevel: "lines,vars,source", - classpath: configurations.castor.asPath) { + classpath: configurations.xjc.asPath) { src(path: sourcesDir) include(name: "**/*.java") include(name: "*.java")