-
Notifications
You must be signed in to change notification settings - Fork 37
Ant Usage
highsource edited this page Dec 24, 2014
·
1 revision
- Include
jsonix-schema-compiler-plugin-<VERSION>.jar
intoxjc/classpath
. - Include
-Xjsonix
and further-Xjsonix-...
command-line options intoarg/@line
.
<xjc destdir="${basedir}/target/generated-sources/xjc" extension="true">
<arg line="-Xjsonix -Xjsonix-compact"/>
<binding dir="${basedir}/src/main/resources">
<include name="**/*.xjb"/>
</binding>
<schema dir="${basedir}/src/main/resources">
<include name="**/*.xsd"/>
</schema>
<!-- Plugins -->
<classpath>
<fileset dir="${basedir}/lib">
<include name="jsonix-*.jar"/>
</fileset>
</classpath>
</xjc>
- Usage
- Basic Concepts
- Generation
- Configuration
- Advanced Topics
- Sample Projects
- Troubleshooting
- Development