-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom-rat.xml
More file actions
105 lines (94 loc) · 3.29 KB
/
pom-rat.xml
File metadata and controls
105 lines (94 loc) · 3.29 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!--
*************************************************
Copyright (c) 2019, Grant D. Miller
License MIT: https://opensource.org/licenses/MIT
**************************************************
-->
<!--
http://stackoverflow.com/questions/3448648/how-do-i-run-a-specific-goal-with-a-particular-configuration-in-a-maven-plugin-w
-->
<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">
<!--
http://code.mycila.com/license-maven-plugin/
http://code.mycila.com/license-maven-plugin/reports/3.0/plugin-info.html
http://maven.apache.org/enforcer/enforcer-rules/index.html
========== TO ADD ===========
http://www.mojohaus.org/taglist-maven-plugin/
-->
<modelVersion>4.0.0</modelVersion>
<groupId>gm7</groupId>
<artifactId>gm7-release-audit-tool</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>gm7-release-audit-tool</name>
<build>
<finalName>gm7-release-audit-tool</finalName>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
<configuration>
<header>doc/license/copyright_header.txt</header>
<basedir>${env.WORKSPACE}</basedir>
<properties>
<project.inceptionYear>2019</project.inceptionYear>
<owner>Grant D. Miller</owner>
<email>grantmiller7@gmail.com</email>
</properties>
<useDefaultExcludes>true</useDefaultExcludes>
<excludes>
<!-- folders to ignore -->
<exclude>doc/**</exclude>
<exclude>bin/**</exclude>
<exclude>obj/**</exclude>
<exclude>.vscode/**</exclude>
<exclude>.mvn/**</exclude>
<!-- specific files/file extensions to ignore -->
<exclude>**/*.rptdesign</exclude>
<exclude>**/*.jmx</exclude>
<exclude>**/*.lock</exclude>
<exclude>**/*.tgz</exclude>
<exclude>**/*.csv</exclude>
<exclude>**/*.jpeg</exclude>
<exclude>**/*.dockerignore</exclude>
<exclude>**/*.factorypath</exclude>
<exclude>**/*.conf</exclude>
<exclude>**/*.attack</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/README</exclude>
<exclude>**/mvnw</exclude>
<exclude>**/mvnw.cmd</exclude>
<exclude>**/*.csproj</exclude>
<exclude>**/*.sln</exclude>
<exclude>**/*.cache</exclude>
<exclude>**/*.targets</exclude>
<exclude>**/*.props</exclude>
<exclude>**/*.pdb</exclude>
<exclude>**/*.txt</exclude>
<exclude>**/*.CopyComplete</exclude>
<exclude>**/*.log</exclude>
<exclude>**/*.nupkg</exclude>
<exclude>**/*.nuspec</exclude>
<exclude>**/*.alias</exclude>
<exclude>**/*.properties</exclude>
</excludes>
<mapping>
<Dockerfile>SCRIPT_STYLE</Dockerfile>
<Jenkinsfile>DOUBLESLASH_STYLE</Jenkinsfile>
<dbm>XML_STYLE</dbm>
</mapping>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>