From 54da4a8c8e4e60f17f9295dc3df8ad58974f149d 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 --- 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 472aa0b3c30..3c896132fd9 100644 --- a/spring-oxm/oxm.gradle +++ b/spring-oxm/oxm.gradle @@ -3,6 +3,7 @@ configurations { xjc jibx } + dependencies { castor "org.codehaus.castor:castor-anttasks:1.4.1" jibx "org.jibx:jibx-bind:1.2.6" @@ -77,7 +78,7 @@ task genJaxb { javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true, debugLevel: "lines,vars,source", - classpath: configurations.castor.asPath) { + classpath: configurations.xjc.asPath) { src(path: sourcesDir) include(name: "**/*.java") include(name: "*.java")