forked from ConnectingEurope/eInvoicing-EN16931
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
84 lines (84 loc) · 2.69 KB
/
pom.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<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.3</version>
</parent>
<artifactId>centc434-validation-rules</artifactId>
<version>1.0.0</version>
<name>centc434-validation-rules</name>
<description>EN16931 - CEN/TC 434 validation rules</description>
<url>https://github.com/CenPC434/validation</url>
<inceptionYear>2016</inceptionYear>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
<exclude>src/main/resources/en16931/**</exclude>
<exclude>src/test/resources/test-files/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-sch2xslt-maven-plugin</artifactId>
<version>5.0.2</version>
<executions>
<!--
-->
<execution>
<id>cii</id>
<goals>
<goal>convert</goal>
</goals>
<configuration>
<schematronDirectory>${basedir}/cii/schematron</schematronDirectory>
<xsltDirectory>${basedir}/cii/xslt</xsltDirectory>
</configuration>
</execution>
<!--
-->
<execution>
<id>edifact</id>
<goals>
<goal>convert</goal>
</goals>
<configuration>
<schematronDirectory>${basedir}/edifact/schematron</schematronDirectory>
<xsltDirectory>${basedir}/edifact/xslt</xsltDirectory>
</configuration>
</execution>
<!--
-->
<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>