You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2007/02/05 16:08:29 UTC

svn commit: r503715 - in /myfaces/maven/branches/1_0_5: build-tools/pom.xml master-pom/pom.xml pom.xml wagon-maven-plugin/pom.xml

Author: manolito
Date: Mon Feb  5 07:08:28 2007
New Revision: 503715

URL: http://svn.apache.org/viewvc?view=rev&rev=503715
Log:
gpg-plugin now via profile in verify phase (deploy phase is too late for signing)

Modified:
    myfaces/maven/branches/1_0_5/build-tools/pom.xml
    myfaces/maven/branches/1_0_5/master-pom/pom.xml
    myfaces/maven/branches/1_0_5/pom.xml
    myfaces/maven/branches/1_0_5/wagon-maven-plugin/pom.xml

Modified: myfaces/maven/branches/1_0_5/build-tools/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/branches/1_0_5/build-tools/pom.xml?view=diff&rev=503715&r1=503714&r2=503715
==============================================================================
--- myfaces/maven/branches/1_0_5/build-tools/pom.xml (original)
+++ myfaces/maven/branches/1_0_5/build-tools/pom.xml Mon Feb  5 07:08:28 2007
@@ -20,23 +20,6 @@
            <version>1.0-alpha-5</version>
         </extension>
       </extensions>
-      
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-gpg-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>sign-artifacts</id>
-            <phase>deploy</phase>
-            <goals>
-              <goal>sign</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-      
   </build>
 
     <dependencies>
@@ -78,4 +61,27 @@
       </snapshotRepository>
     </distributionManagement>
 
+  <profiles>
+    <profile>
+      <id>sign-artifacts</id>
+      <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>
+  
 </project>

Modified: myfaces/maven/branches/1_0_5/master-pom/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/branches/1_0_5/master-pom/pom.xml?view=diff&rev=503715&r1=503714&r2=503715
==============================================================================
--- myfaces/maven/branches/1_0_5/master-pom/pom.xml (original)
+++ myfaces/maven/branches/1_0_5/master-pom/pom.xml Mon Feb  5 07:08:28 2007
@@ -463,19 +463,6 @@
                     <headerLocation>config/myfaces-header.txt</headerLocation>
                 </configuration>
             </plugin>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-gpg-plugin</artifactId>
-              <executions>
-                <execution>
-                  <id>sign-artifacts</id>
-                  <phase>deploy</phase>
-                  <goals>
-                    <goal>sign</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
         </plugins>
     </build>
     <repositories>
@@ -557,4 +544,28 @@
             <url>scpexe://minotaur.apache.org/www/myfaces.apache.org</url>
         </site>
     </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>sign-artifacts</id>
+      <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>
+    
 </project>

Modified: myfaces/maven/branches/1_0_5/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/branches/1_0_5/pom.xml?view=diff&rev=503715&r1=503714&r2=503715
==============================================================================
--- myfaces/maven/branches/1_0_5/pom.xml (original)
+++ myfaces/maven/branches/1_0_5/pom.xml Mon Feb  5 07:08:28 2007
@@ -21,21 +21,6 @@
       </extension>
     </extensions>
     <defaultGoal>install</defaultGoal>
-        <plugins>    
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-gpg-plugin</artifactId>
-              <executions>
-                <execution>
-                  <id>sign-artifacts</id>
-                  <phase>deploy</phase>
-                  <goals>
-                    <goal>sign</goal>
-                  </goals>
-                </execution>
-              </executions>
-            </plugin>
-        </plugins>
   </build>
   <modules>
     <module>master-pom</module>
@@ -55,4 +40,28 @@
       <url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
     </snapshotRepository>
   </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>sign-artifacts</id>
+      <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>
+
 </project>

Modified: myfaces/maven/branches/1_0_5/wagon-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/branches/1_0_5/wagon-maven-plugin/pom.xml?view=diff&rev=503715&r1=503714&r2=503715
==============================================================================
--- myfaces/maven/branches/1_0_5/wagon-maven-plugin/pom.xml (original)
+++ myfaces/maven/branches/1_0_5/wagon-maven-plugin/pom.xml Mon Feb  5 07:08:28 2007
@@ -18,21 +18,6 @@
         <version>1.0-alpha-5</version>
       </extension>
     </extensions>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-gpg-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>sign-artifacts</id>
-            <phase>deploy</phase>
-            <goals>
-              <goal>sign</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
   </build>
   <dependencies>
     <dependency>
@@ -70,4 +55,28 @@
       <url>scpexe://minotaur.apache.org/www/myfaces.apache.org</url>
     </site>
   </distributionManagement>  
+
+  <profiles>
+    <profile>
+      <id>sign-artifacts</id>
+      <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>
+  
 </project>