-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom-validate.xml
43 lines (41 loc) · 1.41 KB
/
pom-validate.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
<?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>1.0.0</modelVersion>
<parent>
<groupId>com.ob</groupId>
<artifactId>parent-pom</artifactId>
<version>0.0.0</version>
</parent>
<artifactId>pint-validation-rules</artifactId>
<version>0.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.ob.maven</groupId>
<artifactId>ob-schematron-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>ubl</id>
<phase>validate</phase>
<goals>
<goal>validate</goal>
</goals>
<configuration>
<xmlDirectory>examples</xmlDirectory>
<schematronProcessingEngine>XSLT</schematronProcessingEngine>
<schematronFile>ubl/xslt/PINT-UBL-validation.xslt</schematronFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>