Jason Dillon wrote:
This is not a valid pom configuration... have not looked at the
branches, but this certainly won't work. I'm going to fix this one,
but you should check that other poms you've updated with this change
actually *build* ;-)
Yep, the others were fine. It was just this one and just one line off
in my paste. Sorry about that.
Joe
--jason
On Sat, Apr 19, 2008 at 3:34 AM, <[EMAIL PROTECTED]> wrote:
Author: jbohn
Date: Fri Apr 18 13:34:39 2008
New Revision: 649685
URL: http://svn.apache.org/viewvc?rev=649685&view=rev
Log:
Enable release deployment - mirrors r620244 from branches/2.1.0
Modified:
geronimo/server/trunk/pom.xml
Modified: geronimo/server/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml?rev=649685&r1=649684&r2=649685&view=diff
==============================================================================
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Fri Apr 18 13:34:39 2008
@@ -2134,6 +2134,39 @@
<version>1.0-alpha-1</version>
</plugin>
</plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.3</version>
+ <inherited>true</inherited>
+ <configuration>
+ <updateReleaseInfo>true</updateReleaseInfo>
+
<altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>1.0-alpha-3</version>
+ <configuration>
+ <passphrase>${gpg.passphrase}</passphrase>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-6</version>
+ </plugin>
</pluginManagement>
<plugins>