You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2012/02/23 13:50:25 UTC

svn commit: r1292780 - in /incubator/hama/trunk: CHANGES.txt pom.xml

Author: edwardyoon
Date: Thu Feb 23 12:50:24 2012
New Revision: 1292780

URL: http://svn.apache.org/viewvc?rev=1292780&view=rev
Log:
Add maven-gpg-plugin to parent POM file

Modified:
    incubator/hama/trunk/CHANGES.txt
    incubator/hama/trunk/pom.xml

Modified: incubator/hama/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/CHANGES.txt?rev=1292780&r1=1292779&r2=1292780&view=diff
==============================================================================
--- incubator/hama/trunk/CHANGES.txt (original)
+++ incubator/hama/trunk/CHANGES.txt Thu Feb 23 12:50:24 2012
@@ -12,6 +12,7 @@ Release 0.5 - Unreleased
 
   IMPROVEMENTS
     
+    HAMA-514: Add maven-gpg-plugin to parent POM file (edwardyoon)
     HAMA-510: Add sendMessageToNeighbors() to Vertex (tjungblut)
     HAMA-502: Message API Improvement (edwardyoon)
   

Modified: incubator/hama/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/pom.xml?rev=1292780&r1=1292779&r2=1292780&view=diff
==============================================================================
--- incubator/hama/trunk/pom.xml (original)
+++ incubator/hama/trunk/pom.xml Thu Feb 23 12:50:24 2012
@@ -297,6 +297,7 @@
         </executions>
         <configuration>
           <excludes>
+            <exclude>**/*.asc</exclude>
             <exclude>**/logs/**</exclude>
             <exclude>CHANGES.txt</exclude>
             <exclude>conf/groomservers</exclude>
@@ -306,7 +307,19 @@
           </excludes>
         </configuration>
       </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>
     </plugins>
   </build>