Skip to content

Instantly share code, notes, and snippets.

@yamanyar
Created April 7, 2012 05:21
Show Gist options
  • Save yamanyar/2325503 to your computer and use it in GitHub Desktop.
Save yamanyar/2325503 to your computer and use it in GitHub Desktop.
auto compile at building
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<schemaDirectory>
src/main/resources/xsd
</schemaDirectory>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment