You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by to...@apache.org on 2011/08/03 19:52:01 UTC

svn commit: r1153597 - in /hadoop/common/trunk: hadoop-assemblies/pom.xml hadoop-common/CHANGES.txt hadoop-project/pom.xml

Author: tomwhite
Date: Wed Aug  3 17:52:00 2011
New Revision: 1153597

URL: http://svn.apache.org/viewvc?rev=1153597&view=rev
Log:
HADOOP-7501. Publish Hadoop Common artifacts (post HADOOP-6671) to Apache SNAPSHOTs repo. Contributed by Alejandro Abdelnur

Modified:
    hadoop/common/trunk/hadoop-assemblies/pom.xml
    hadoop/common/trunk/hadoop-common/CHANGES.txt
    hadoop/common/trunk/hadoop-project/pom.xml

Modified: hadoop/common/trunk/hadoop-assemblies/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-assemblies/pom.xml?rev=1153597&r1=1153596&r2=1153597&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/trunk/hadoop-assemblies/pom.xml Wed Aug  3 17:52:00 2011
@@ -17,6 +17,12 @@
 -->
 <project>
   <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.hadoop</groupId>
+    <artifactId>hadoop-project</artifactId>
+    <version>0.23.0-SNAPSHOT</version>
+    <relativePath>../hadoop-project</relativePath>
+  </parent>
   <groupId>org.apache.hadoop</groupId>
   <artifactId>hadoop-assemblies</artifactId>
   <version>0.23.0-SNAPSHOT</version>

Modified: hadoop/common/trunk/hadoop-common/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common/CHANGES.txt?rev=1153597&r1=1153596&r2=1153597&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-common/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-common/CHANGES.txt Wed Aug  3 17:52:00 2011
@@ -306,6 +306,9 @@ Trunk (unreleased changes)
     HADOOP-7502. Make generated sources IDE friendly.
     (Alejandro Abdelnur via llu)
 
+    HADOOP-7501. publish Hadoop Common artifacts (post HADOOP-6671) to Apache
+    SNAPSHOTs repo. (Alejandro Abdelnur via tomwhite)
+
   OPTIMIZATIONS
   
     HADOOP-7333. Performance improvement in PureJavaCrc32. (Eric Caspole

Modified: hadoop/common/trunk/hadoop-project/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-project/pom.xml?rev=1153597&r1=1153596&r2=1153597&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-project/pom.xml (original)
+++ hadoop/common/trunk/hadoop-project/pom.xml Wed Aug  3 17:52:00 2011
@@ -21,6 +21,19 @@
   <name>Apache Hadoop Project POM</name>
   <packaging>pom</packaging>
 
+  <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>${distMgmtSnapshotsName}</name>
+      <url>${distMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
+  </distributionManagement>
+
   <licenses>
     <license>
       <name>The Apache Software License, Version 2.0</name>
@@ -50,6 +63,9 @@
     <jdiff.version>1.0.9</jdiff.version>
 
     <hadoop.assemblies.version>${project.version}</hadoop.assemblies.version>
+
+    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
+    <distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
   </properties>
 
   <dependencyManagement>