forked from jimonthebarn/maven-license-plugin-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
81 lines (71 loc) · 3.18 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jotb.playground</groupId>
<artifactId>dependency-plugin-issue</artifactId>
<version>0.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>submodule1</module>
<module>submodule2</module>
</modules>
<name>dependency-plugin-issue</name>
<description>Project illustrating an assumed issue with the dependency-maven-plugin</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<configuration>
<!-- <failOnBlacklist>true</failOnBlacklist> -->
<includedLicenses>
<includedLicense>Apache License, Version 2.0</includedLicense>
<includedLicense>Apache License, version 2.0</includedLicense>
<includedLicense>Apache License 2.0</includedLicense>
<includedLicense>The Apache Software License, Version 2.0</includedLicense>
<includedLicense>MIT License</includedLicense>
<includedLicense>CDDL + GPLv2 with classpath exception</includedLicense>
<includedLicense>GNU Lesser General Public License</includedLicense>
<includedLicense>Eclipse Public License - v 1.0</includedLicense>
</includedLicenses>
</configuration>
<executions>
<execution>
<id>aggregate-add-third-party</id>
<goals>
<goal>aggregate-add-third-party</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>my-test-repository</id>
<name>Repo for test deployments</name>
<url>http://localhost/snapshots</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>my-test-deployment-repository</id>
<url>http://localhost/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>