You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ch...@apache.org on 2007/09/21 17:13:17 UTC

svn commit: r578166 - /activemq/camel/trunk/pom.xml

Author: chirino
Date: Fri Sep 21 08:13:16 2007
New Revision: 578166

URL: http://svn.apache.org/viewvc?rev=578166&view=rev
Log:
Trying to see if can enable the maven release plugin for camel

Modified:
    activemq/camel/trunk/pom.xml

Modified: activemq/camel/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/pom.xml?rev=578166&r1=578165&r2=578166&view=diff
==============================================================================
--- activemq/camel/trunk/pom.xml (original)
+++ activemq/camel/trunk/pom.xml Fri Sep 21 08:13:16 2007
@@ -783,6 +783,20 @@
           <artifactId>maven-jetty-plugin</artifactId>
           <version>${jetty-version}</version>
         </plugin>
+        
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-release-plugin</artifactId>
+            <configuration>
+                <tagBase>https://svn.apache.org/repos/asf/activemq/camel/tags</tagBase>
+                <useReleaseProfile>false</useReleaseProfile>
+                <preparationGoals>clean install</preparationGoals>
+                <goals>deploy</goals>
+                <arguments>-Prelease,deploy</arguments>
+                <autoVersionSubmodules>true</autoVersionSubmodules>
+            </configuration>
+        </plugin>
+        
       </plugins>
     </pluginManagement>
 
@@ -1138,5 +1152,37 @@
         </plugins>
       </build>
     </profile>
+    
+    
+    <profile>
+        <id>release</id>
+        <build>
+            <plugins>
+                <!-- We want to deploy the artifact to a staging location for perusal -->
+                <plugin>
+                    <inherited>true</inherited>
+                    <artifactId>maven-deploy-plugin</artifactId>
+                    <version>2.3</version>
+                    <configuration>
+                        <updateReleaseInfo>true</updateReleaseInfo>
+                    </configuration>
+                </plugin>
+                <!-- We want to sign the artifact, the POM, and all attached artifacts -->
+                <plugin>
+                    <artifactId>maven-gpg-plugin</artifactId>
+                    <version>1.0-alpha-3</version>
+                    <executions>
+                        <execution>
+                            <goals>
+                                <goal>sign</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+            </plugins>
+        </build>
+    </profile>
+    
+    
   </profiles>
 </project>