You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2013/09/13 08:37:19 UTC

svn commit: r1522790 - in /hama/trunk: c++/pom.xml core/pom.xml dist/pom.xml examples/pom.xml graph/pom.xml ml/pom.xml pom.xml

Author: edwardyoon
Date: Fri Sep 13 06:37:19 2013
New Revision: 1522790

URL: http://svn.apache.org/r1522790
Log:
[maven-release-plugin] prepare release 0.6.3-RC2

Modified:
    hama/trunk/c++/pom.xml
    hama/trunk/core/pom.xml
    hama/trunk/dist/pom.xml
    hama/trunk/examples/pom.xml
    hama/trunk/graph/pom.xml
    hama/trunk/ml/pom.xml
    hama/trunk/pom.xml

Modified: hama/trunk/c++/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/c%2B%2B/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/c++/pom.xml (original)
+++ hama/trunk/c++/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,13 +20,13 @@
     <parent>
       <groupId>org.apache.hama</groupId>
       <artifactId>hama-parent</artifactId>
-      <version>0.6.3-SNAPSHOT</version>
+      <version>0.6.3</version>
     </parent>
     
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-pipes</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
     <name>pipes</name>
     <description>Apache Hama Pipes</description>
     <packaging>pom</packaging>
@@ -49,17 +49,16 @@
                   <goals><goal>run</goal></goals>
                   <configuration>
                     <target>
-                      <mkdir dir="${project.build.directory}/native"/>
-                      <exec executable="cmake" dir="${project.build.directory}/native"
-                          failonerror="true">
-                        <arg line="${basedir}/src/ -DJVM_ARCH_DATA_MODEL=${sun.arch.data.model}"/>
+                      <mkdir dir="${project.build.directory}/native" />
+                      <exec executable="cmake" dir="${project.build.directory}/native" failonerror="true">
+                        <arg line="${basedir}/src/ -DJVM_ARCH_DATA_MODEL=${sun.arch.data.model}" />
                       </exec>
                       <exec executable="make" dir="${project.build.directory}/native" failonerror="true">
-                        <arg line="VERBOSE=1"/>
+                        <arg line="VERBOSE=1" />
                       </exec>
                       <!-- The second make is a workaround for HADOOP-9215.  It can
                            be removed when version 2.6 of cmake is no longer supported . -->
-                      <exec executable="make" dir="${project.build.directory}/native" failonerror="true"></exec>
+                      <exec executable="make" dir="${project.build.directory}/native" failonerror="true" />
                     </target>
                   </configuration>
                 </execution>
@@ -95,9 +94,9 @@
               </goals>
               <configuration>
                 <target>
-                  <mkdir dir="${basedir}/../target/native"/>
+                  <mkdir dir="${basedir}/../target/native" />
                   <copy toDir="${basedir}/../target/native">
-                    <fileset dir="${basedir}/src/main/native"/>
+                    <fileset dir="${basedir}/src/main/native" />
                   </copy>
                 </target>
               </configuration>

Modified: hama/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/core/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/core/pom.xml (original)
+++ hama/trunk/core/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,14 +20,14 @@
   <parent>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-parent</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.hama</groupId>
   <artifactId>hama-core</artifactId>
   <name>core</name>
-  <version>0.6.3-SNAPSHOT</version>
+  <version>0.6.3</version>
   <packaging>jar</packaging>
 
   <dependencies>

Modified: hama/trunk/dist/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/dist/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/dist/pom.xml (original)
+++ hama/trunk/dist/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-parent</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
   </parent>
   
   <artifactId>hama-dist</artifactId>

Modified: hama/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/examples/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/examples/pom.xml (original)
+++ hama/trunk/examples/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,14 +20,14 @@
   <parent>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-parent</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.hama</groupId>
   <artifactId>hama-examples</artifactId>
   <name>examples</name>
-  <version>0.6.3-SNAPSHOT</version>
+  <version>0.6.3</version>
   <packaging>jar</packaging>
 
   <dependencies>

Modified: hama/trunk/graph/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/graph/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/graph/pom.xml (original)
+++ hama/trunk/graph/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,14 +20,14 @@
   <parent>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-parent</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.hama</groupId>
   <artifactId>hama-graph</artifactId>
   <name>graph</name>
-  <version>0.6.3-SNAPSHOT</version>
+  <version>0.6.3</version>
   <packaging>jar</packaging>
 
   <dependencies>

Modified: hama/trunk/ml/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/ml/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/ml/pom.xml (original)
+++ hama/trunk/ml/pom.xml Fri Sep 13 06:37:19 2013
@@ -20,14 +20,14 @@
   <parent>
     <groupId>org.apache.hama</groupId>
     <artifactId>hama-parent</artifactId>
-    <version>0.6.3-SNAPSHOT</version>
+    <version>0.6.3</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.hama</groupId>
   <artifactId>hama-ml</artifactId>
   <name>machine learning</name>
-  <version>0.6.3-SNAPSHOT</version>
+  <version>0.6.3</version>
   <packaging>jar</packaging>
 
   <dependencies>

Modified: hama/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hama/trunk/pom.xml?rev=1522790&r1=1522789&r2=1522790&view=diff
==============================================================================
--- hama/trunk/pom.xml (original)
+++ hama/trunk/pom.xml Fri Sep 13 06:37:19 2013
@@ -27,7 +27,7 @@
   <groupId>org.apache.hama</groupId>
   <artifactId>hama-parent</artifactId>
   <name>Apache Hama parent POM</name>
-  <version>0.6.3-SNAPSHOT</version>
+  <version>0.6.3</version>
   <url>http://hama.apache.org</url>
   <packaging>pom</packaging>
   <prerequisites>
@@ -75,12 +75,12 @@
     </license>
   </licenses>
   <scm>
-    <url>scm:svn:https://svn.apache.org/repos/asf/hama/</url>
+    <url>scm:svn:https://svn.apache.org/repos/asf/hama/tags/0.6.3-RC2</url>
     <connection>
-      scm:svn:http://svn.apache.org/repos/asf/hama/trunk/
+      scm:svn:http://svn.apache.org/repos/asf/hama/tags/0.6.3-RC2
     </connection>
     <developerConnection>
-      scm:svn:https://svn.apache.org/repos/asf/hama/trunk/
+      scm:svn:https://svn.apache.org/repos/asf/hama/tags/0.6.3-RC2
     </developerConnection>
   </scm>