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 2010/11/04 21:40:34 UTC

svn commit: r1031224 - /httpcomponents/maven-notice-plugin/trunk/pom.xml

Author: olegk
Date: Thu Nov  4 20:40:34 2010
New Revision: 1031224

URL: http://svn.apache.org/viewvc?rev=1031224&view=rev
Log:
Upgraded version to 0.0.2-SNAPSHOT

Modified:
    httpcomponents/maven-notice-plugin/trunk/pom.xml

Modified: httpcomponents/maven-notice-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/httpcomponents/maven-notice-plugin/trunk/pom.xml?rev=1031224&r1=1031223&r2=1031224&view=diff
==============================================================================
--- httpcomponents/maven-notice-plugin/trunk/pom.xml (original)
+++ httpcomponents/maven-notice-plugin/trunk/pom.xml Thu Nov  4 20:40:34 2010
@@ -29,7 +29,7 @@
   <groupId>org.apache.httpcomponents</groupId>
   <artifactId>maven-notice-plugin</artifactId>
   <name>Maven NOTICE and LICENSE plugin</name>
-  <version>0.0.1-SNAPSHOT</version>
+  <version>0.0.2-SNAPSHOT</version>
   <description>Maven plugin for automatic generation of NOTICE and LICENSE resources</description>
   <url>http://hc.apache.org/</url>
   <inceptionYear>2010</inceptionYear>
@@ -54,6 +54,19 @@
     <url>http://svn.apache.org/repos/asf/httpcomponents/maven-notice-plugin/trunk</url>
   </scm>
 
+ <distributionManagement>
+    <repository>
+      <id>apache.releases.https</id>
+      <name>Apache Release Distribution Repository</name>
+      <url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
+    </repository>
+    <snapshotRepository>
+      <id>apache.snapshots.https</id>
+      <name>Apache Development Snapshot Repository</name>
+      <url>https://repository.apache.org/content/repositories/snapshots</url>
+    </snapshotRepository>
+  </distributionManagement>
+
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -101,4 +114,28 @@
     </plugins>
   </build>
 
+ <profiles>
+   <profile>
+     <id>release</id>
+     <build>
+       <plugins>
+         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-gpg-plugin</artifactId>
+          <version>1.1</version>
+          <executions>
+            <execution>
+              <id>sign-artifacts</id>
+              <phase>verify</phase>
+              <goals>
+                <goal>sign</goal>
+              </goals>
+            </execution>
+          </executions>
+         </plugin>
+       </plugins>
+     </build>
+   </profile>
+ </profiles>
+
 </project>