You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2007/06/23 21:52:52 UTC

svn commit: r550094 - /jakarta/httpcomponents/project/pom.xml

Author: olegk
Date: Sat Jun 23 12:52:51 2007
New Revision: 550094

URL: http://svn.apache.org/viewvc?view=rev&rev=550094
Log:
Added gpg-plugin and the associated release profile to the project pom

Modified:
    jakarta/httpcomponents/project/pom.xml

Modified: jakarta/httpcomponents/project/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/httpcomponents/project/pom.xml?view=diff&rev=550094&r1=550093&r2=550094
==============================================================================
--- jakarta/httpcomponents/project/pom.xml (original)
+++ jakarta/httpcomponents/project/pom.xml Sat Jun 23 12:52:51 2007
@@ -191,6 +191,23 @@
         <artifactId>maven-site-plugin</artifactId>
       </plugin>
     </plugins>
+    <pluginManagement>
+      <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>
+    </pluginManagement>
   </build>
 
   <reporting>
@@ -216,5 +233,19 @@
     <module>../httpcore</module>
     <module>../httpclient</module>
   </modules>
+
+ <profiles>
+   <profile>
+     <id>release</id>
+     <build>
+       <plugins>
+         <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-gpg-plugin</artifactId>
+         </plugin>
+       </plugins>
+     </build>
+   </profile>
+ </profiles>
 
 </project>