You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2008/09/10 16:18:19 UTC

svn commit: r693848 - /geronimo/server/branches/2.1.3/pom.xml

Author: dwoods
Date: Wed Sep 10 07:18:19 2008
New Revision: 693848

URL: http://svn.apache.org/viewvc?rev=693848&view=rev
Log:
rename release profile to staging to control what plugins are run, as the genesis release profile is causing source jars to be genereated which fail the enforcer check

Modified:
    geronimo/server/branches/2.1.3/pom.xml

Modified: geronimo/server/branches/2.1.3/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1.3/pom.xml?rev=693848&r1=693847&r2=693848&view=diff
==============================================================================
--- geronimo/server/branches/2.1.3/pom.xml (original)
+++ geronimo/server/branches/2.1.3/pom.xml Wed Sep 10 07:18:19 2008
@@ -2587,11 +2587,20 @@
         </profile>
 
         <profile>
-            <id>release</id>
+            <id>staging</id>
 
             <build>
                 <plugins>
-                    
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-release-plugin</artifactId>
+                        <configuration>
+                            <useReleaseProfile>false</useReleaseProfile>
+                            <goals>deploy</goals>
+                            <arguments>-Prelease</arguments>
+                        </configuration>
+                    </plugin>
+
                     <!-- We want to sign the artifact, the POM, and all attached artifacts -->
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
@@ -2619,9 +2628,17 @@
                             <updateReleaseInfo>true</updateReleaseInfo>
                         </configuration>
                     </plugin>
-
                 </plugins>
             </build>
+
+            <modules>
+                <module>repository</module>
+                <module>buildsupport</module>
+                <module>testsupport</module>
+                <module>framework</module>
+                <module>plugins</module>
+                <module>assemblies</module>
+            </modules>
         </profile>
     </profiles>