Gradle plugins
apply from: 'https://raw.github.com/rartavia/gradle-plugins/master/xmlbeansPlugin/xmlbeans.gradle'
...
configurations {
xmlbeans
}
dependencies {
xmlbeans 'org.apache.xmlbeans:xmlbeans:2.5.0'
}
sourceSets {
schemas {
srcDir = 'src/main/schemas'
}
}
Instructions:
- Place your schemas somewhere in your project as shown above
- Declare the required XMLBeans dependency
- Invoke the "compileXmlSchemas" task
Notes: Compiled classes are inside of "build/classes/xmlbeans"