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>