Skip to content

Instantly share code, notes, and snippets.

@nkonev
Created February 24, 2015 11:04
Show Gist options
  • Save nkonev/c98557aee9f47d2e1543 to your computer and use it in GitHub Desktop.
Save nkonev/c98557aee9f47d2e1543 to your computer and use it in GitHub Desktop.
jaxb2-maven-plugin
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>xjc</id>
<phase>generate-sources</phase>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>${autogenerable.xsd.path}</schemaDirectory>
<packageName>${autogenerable.package.name}</packageName>
<outputDirectory>${project.basedir}/src/main/java</outputDirectory>
<clearOutputDir>false</clearOutputDir>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment