You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metamodel.apache.org by an...@apache.org on 2013/09/18 15:21:36 UTC

git commit: Removing the gpg-plugin as it is defined in the parent pom under the release profile.

Updated Branches:
  refs/heads/master 712c4859a -> 34a45440a


Removing the gpg-plugin as it is defined in the parent pom under the
release profile.

Project: http://git-wip-us.apache.org/repos/asf/incubator-metamodel/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-metamodel/commit/34a45440
Tree: http://git-wip-us.apache.org/repos/asf/incubator-metamodel/tree/34a45440
Diff: http://git-wip-us.apache.org/repos/asf/incubator-metamodel/diff/34a45440

Branch: refs/heads/master
Commit: 34a45440a550c4d668c62c0dd09034185f0ddd25
Parents: 712c485
Author: ak.ankitkumar@gmail.com <ak...@gmail.com>
Authored: Wed Sep 18 15:22:41 2013 +0200
Committer: ak.ankitkumar@gmail.com <ak...@gmail.com>
Committed: Wed Sep 18 15:22:41 2013 +0200

----------------------------------------------------------------------
 pom.xml | 59 +++++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 45 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-metamodel/blob/34a45440/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f3b0609..51ce264 100644
--- a/pom.xml
+++ b/pom.xml
@@ -12,7 +12,6 @@
 		<!-- Version printed in the docs -->
 		<siteDownloadVersion>${project.version}</siteDownloadVersion>
 		<checksum-maven-plugin.version>1.2</checksum-maven-plugin.version>
-		<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
 		<skipTests>false</skipTests>
 	</properties>
 	<parent>
@@ -144,6 +143,51 @@
 				</configuration>
 			</plugin>
 			<plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <executions>
+                  <execution>
+                    <id>rat-verify</id>
+                    <phase>test</phase>
+                    <goals>
+                      <goal>check</goal>
+                    </goals>
+                  </execution>
+                </executions>
+                <configuration>
+          	    <licenses>
+            	  <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
+              	  <licenseFamilyCategory>ASL20</licenseFamilyCategory>
+              	  <licenseFamilyName>Apache Software License, 2.0</licenseFamilyName>
+              	  <notes>Single licensed ASL v2.0</notes>
+              	  <patterns>
+                	<pattern>Licensed to the Apache Software Foundation (ASF) under one
+                	or more contributor license agreements.</pattern>
+              	  </patterns>
+            	  </license>
+                 </licenses>
+                 <excludeSubProjects>false</excludeSubProjects>
+                 <excludes>
+                   <exclude>CHANGES.txt</exclude>
+                   <exclude>README.txt</exclude>
+                   <exclude>NOTICE.txt</exclude>
+                   <exclude>LICENSE.txt</exclude>
+                   <exclude>KEYS</exclude>
+                   <exclude>**/.gitignore/**</exclude>
+                   <exclude>.git/**</exclude>
+                   <exclude>.project</exclude>
+                   <exclude>*/.settings/*</exclude>
+                   <exclude>**/src/test/**</exclude>
+                   <exclude>**/src/site/**</exclude>
+                   <exclude>**/*.xml/**</exclude>
+                   <exclude>**/*.wsdl/**</exclude>
+                   <exclude>**/*.xsd/**</exclude>
+                   <exclude>**/.project</exclude>
+                   <exclude>**/target/**</exclude>
+                 </excludes>
+                </configuration>
+              </plugin>
+			<plugin>
 				<!-- Ensure inclusion of license header in all main java files -->
 				<groupId>com.google.code.maven-license-plugin</groupId>
 				<artifactId>maven-license-plugin</artifactId>
@@ -223,19 +267,6 @@
 				</executions>
 			</plugin>
 			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-gpg-plugin</artifactId>
-				<executions>
-					<execution>
-						<id>sign-artifacts</id>
-						<phase>verify</phase>
-						<goals>
-							<goal>sign</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-			<plugin>
 				<groupId>net.ju-n.maven.plugins</groupId>
 				<artifactId>checksum-maven-plugin</artifactId>
 				<version>${checksum-maven-plugin.version}</version>