Skip to content

Commit 26a25c1

Browse files
committed
Optimized license-maven-plugin settings
Change-Id: Ic7625a06f818afe6f8d87266b332b2b34a883d16
1 parent dfff456 commit 26a25c1

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

pom.xml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<artifactId>xcode-project-reader</artifactId>
66
<packaging>jar</packaging>
77
<version>0.0.1-SNAPSHOT</version>
8+
<description>
9+
The xcode-project-reader library provides an Java API for read and write
10+
access to an Xcode project file.
11+
</description>
812
<inceptionYear>2012</inceptionYear>
913
<organization>
1014
<name>SAP AG</name>
@@ -16,7 +20,29 @@
1620
<distribution>repo</distribution>
1721
</license>
1822
</licenses>
23+
24+
<properties>
25+
<license.excludes>**/*.pbxproj.xml,**/PropertyList-1.0.dtd</license.excludes>
26+
</properties>
27+
1928
<build>
29+
<pluginManagement>
30+
<plugins>
31+
<plugin>
32+
<groupId>org.apache.maven.plugins</groupId>
33+
<artifactId>maven-site-plugin</artifactId>
34+
<version>3.1</version>
35+
</plugin>
36+
<plugin>
37+
<groupId>org.codehaus.mojo</groupId>
38+
<artifactId>license-maven-plugin</artifactId>
39+
<version>1.1</version>
40+
<configuration>
41+
<licenseName>apache_v2</licenseName>
42+
</configuration>
43+
</plugin>
44+
</plugins>
45+
</pluginManagement>
2046
<plugins>
2147
<plugin>
2248
<groupId>org.apache.maven.plugins</groupId>
@@ -39,13 +65,6 @@
3965
</execution>
4066
</executions>
4167
</plugin>
42-
<plugin>
43-
<groupId>org.codehaus.mojo</groupId>
44-
<artifactId>license-maven-plugin</artifactId>
45-
<configuration>
46-
<licenseName>apache_v2</licenseName>
47-
</configuration>
48-
</plugin>
4968
</plugins>
5069
</build>
5170
<dependencies>

0 commit comments

Comments
 (0)