You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by es...@apache.org on 2007/03/30 21:25:35 UTC

svn commit: r524245 - /portals/pluto/branches/pluto-1.1.x/pom.xml

Author: esm
Date: Fri Mar 30 12:25:34 2007
New Revision: 524245

URL: http://svn.apache.org/viewvc?view=rev&rev=524245
Log:
[PLUTO-348]: Adding GPG plugin to the assembly profile.

Modified:
    portals/pluto/branches/pluto-1.1.x/pom.xml

Modified: portals/pluto/branches/pluto-1.1.x/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/branches/pluto-1.1.x/pom.xml?view=diff&rev=524245&r1=524244&r2=524245
==============================================================================
--- portals/pluto/branches/pluto-1.1.x/pom.xml (original)
+++ portals/pluto/branches/pluto-1.1.x/pom.xml Fri Mar 30 12:25:34 2007
@@ -315,13 +315,29 @@
         </plugins>
     </reporting>
 
-
     <profiles>
         <profile>
             <id>assembly</id>
             <modules>
                 <module>assembly</module>
             </modules>
+            <build>
+                <plugins>
+                    <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>        
         </profile>
     </profiles>