Author: tfischer
Date: Sun Sep 7 02:23:43 2008
New Revision: 692800
URL: http://svn.apache.org/viewvc?rev=692800&view=rev
Log:
moved the gpg plugin into a profile so that a normal "mvn install" works
Modified:
db/torque/common/trunk/pom.xml
Modified: db/torque/common/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/db/torque/common/trunk/pom.xml?rev=692800&r1=692799&r2=692800&view=diff
==============================================================================
--- db/torque/common/trunk/pom.xml (original)
+++ db/torque/common/trunk/pom.xml Sun Sep 7 02:23:43 2008
@@ -336,19 +336,6 @@
</execution>
</executions>
</plugin>
- <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>
@@ -441,6 +428,29 @@
<name>Apache Development Snapshot Repository</name>
<url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
</snapshotRepository>
- </distributionManagement>
+ </distributionManagement>
+
+ <profiles>
+ <profile>
+ <id>release</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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]