-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom-license.xml
53 lines (51 loc) · 1.73 KB
/
pom-license.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
<?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.ob</groupId>
<artifactId>parent-pom</artifactId>
<version>1.10.8</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>
<licenses>
<license>
<name>EUPL V2</name>
<url>https://eupl.eu/1.2/en/</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>templates/license-template.txt</header>
<excludes>
<exclude>**/.git*</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
<exclude>**/*.pdf</exclude>
<exclude>**/*.doc</exclude>
<exclude>**/*.docx</exclude>
<exclude>**/*.ods</exclude>
<exclude>**/*.TXT</exclude>
<exclude>**/*.cmd</exclude>
<exclude>**/*.sh</exclude>
<exclude>cii/schema/**</exclude>
<exclude>edifact/examples/**</exclude>
<exclude>edifact/schema/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>