You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by rg...@apache.org on 2008/07/19 13:25:20 UTC

svn commit: r678133 - /struts/struts2/branches/STRUTS_2_0_X/pom.xml

Author: rgielen
Date: Sat Jul 19 04:25:19 2008
New Revision: 678133

URL: http://svn.apache.org/viewvc?rev=678133&view=rev
Log:
Fix broken jar signing with maven

Modified:
    struts/struts2/branches/STRUTS_2_0_X/pom.xml

Modified: struts/struts2/branches/STRUTS_2_0_X/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/pom.xml?rev=678133&r1=678132&r2=678133&view=diff
==============================================================================
--- struts/struts2/branches/STRUTS_2_0_X/pom.xml (original)
+++ struts/struts2/branches/STRUTS_2_0_X/pom.xml Sat Jul 19 04:25:19 2008
@@ -259,6 +259,19 @@
                     <useReleaseProfile>false</useReleaseProfile>
                   </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>
         </pluginManagement>