Browse Source

Correct reference to XJC classpath

(cherry picked from commit 54da4a8)
pull/1316/head
Juergen Hoeller 9 years ago
parent
commit
391ebc8eda
  1. 3
      spring-oxm/oxm.gradle

3
spring-oxm/oxm.gradle

@ -4,6 +4,7 @@ configurations { @@ -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 { @@ -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")

Loading…
Cancel
Save