Delete JAXB generated files from Git. Instead generate them at compile time by maven

This commit is contained in:
Yannik Hampe
2017-05-30 17:03:42 +02:00
parent a771b1e769
commit bdff77b824
76 changed files with 673 additions and 9441 deletions

20
pom.xml
View File

@@ -133,6 +133,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<target>2.1</target>
<packageName>org.mustangproject.ZUGFeRD.model</packageName>
<sources>
<source>src/main/schema/ZUGFeRD1p0.xsd</source>
</sources>
</configuration>
</plugin>
</plugins>
</build>
<mailingLists>