Created
November 14, 2013 15:32
-
-
Save bandicoot86/7468835 to your computer and use it in GitHub Desktop.
Create default values after xjc jaxb phase.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.cxf</groupId> | |
<artifactId>cxf-xjc-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>xsdtojava</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<xsdOptions> | |
<xsdOption> | |
<extension>true</extension> | |
<xsd>${basedir}/src/main/resources/schemas/application.xsd</xsd> | |
<extensionArgs> | |
<arg>-Xdv</arg> | |
</extensionArgs> | |
</xsdOption> | |
</xsdOptions> | |
<extensions> | |
<extension>org.apache.cxf.xjcplugins:cxf-xjc-dv:2.3.0</extension> | |
</extensions> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment