Author: jvanzyl
Date: Sat Dec  9 13:46:52 2006
New Revision: 485066

URL: http://svn.apache.org/viewvc?view=rev&rev=485066
Log:
o couple problems with the release profile
  - the deployment is running twice
  - the JavaDoc and Source JARs aren't getting signed


Modified:
    maven/plugins/trunk/pom.xml

Modified: maven/plugins/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/pom.xml?view=diff&rev=485066&r1=485065&r2=485066
==============================================================================
--- maven/plugins/trunk/pom.xml (original)
+++ maven/plugins/trunk/pom.xml Sat Dec  9 13:46:52 2006
@@ -163,6 +163,7 @@
       </build>
     </profile>
     <profile>
+      <!-- Problems: it's running twice, and not signing JavaDoc and Source 
JARs -->
       <id>stageRelease</id>
       <build>
         <plugins>
@@ -226,6 +227,18 @@
               </execution>
             </executions>
           </plugin>                    
+          <!-- We want to sign the artifact, the POM, and all attached 
artifacts -->
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>                              
         </plugins>
       </build>
     </profile>       


Reply via email to