Author: simonetripodi
Date: Fri Jan 6 17:57:40 2012
New Revision: 1228307
URL: http://svn.apache.org/viewvc?rev=1228307&view=rev
Log:
included gpg to sign artifacts while deploying a RC
Modified:
maven/skins/trunk/pom.xml
Modified: maven/skins/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/maven/skins/trunk/pom.xml?rev=1228307&r1=1228306&r2=1228307&view=diff
==============================================================================
--- maven/skins/trunk/pom.xml (original)
+++ maven/skins/trunk/pom.xml Fri Jan 6 17:57:40 2012
@@ -93,6 +93,23 @@ under the License.
<properties>
<site.destination>${project.artifactId}-${project.version}</site.destination>
</properties>
+ <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>