-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom-xslt.xml
44 lines (42 loc) · 1.42 KB
/
pom-xslt.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under European Union Public Licence (EUPL) version 1.2.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.helger</groupId>
<artifactId>parent-pom</artifactId>
<version>1.10.8</version>
</parent>
<artifactId>pint-validation-rules</artifactId>
<version>1.0.0</version>
<name>pint-validation-rules</name>
<description>PINT validation rules</description>
<url>https://github.com/oriol/PINT</url>
<inceptionYear>2020</inceptionYear>
<build>
<plugins>
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-schematron-maven-plugin</artifactId>
<version>5.2.0</version>
<executions>
<execution>
<id>ubl</id>
<goals>
<goal>convert</goal>
</goals>
<configuration>
<schematronDirectory>${basedir}/ubl/schematron</schematronDirectory>
<xsltDirectory>${basedir}/ubl/xslt</xsltDirectory>
</configuration>
</execution>
</executions>
<configuration>
<schematronPattern>*.sch</schematronPattern>
</configuration>
</plugin>
</plugins>
</build>
</project>