added ph-schematron-maven-plugin so that xrechnung xslt can be generated

This commit is contained in:
Jochen Stärk
2020-05-30 10:04:42 +02:00
parent dbdcdbe75f
commit 29a6af4c15
6 changed files with 582 additions and 407 deletions

View File

@@ -125,6 +125,24 @@
</plugins>
</pluginManagement>
<plugins>
<!-- be able to generate XSLT from XRechnung Schematron-->
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>5.6.0</version>
<configuration>
<schematronDirectory>${basedir}/src/main/resources/schematron</schematronDirectory>
<xsltDirectory>${basedir}/src/main/resources/xslt</xsltDirectory>
<schematronPattern>**/XRechnung-CII-validation.sch</schematronPattern>
</configuration>
<executions>
<execution>
<goals>
<goal>convert</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- allow getImplementationVersion for the pom.xml -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>