You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ac...@apache.org on 2011/12/16 10:49:08 UTC

svn commit: r1215076 - in /incubator/giraph/trunk: CHANGELOG pom.xml

Author: aching
Date: Fri Dec 16 09:49:08 2011
New Revision: 1215076

URL: http://svn.apache.org/viewvc?rev=1215076&view=rev
Log:
GIRAPH-103: Added properties for commonly used package version to
pom.xml. (aching)


Modified:
    incubator/giraph/trunk/CHANGELOG
    incubator/giraph/trunk/pom.xml

Modified: incubator/giraph/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/CHANGELOG?rev=1215076&r1=1215075&r2=1215076&view=diff
==============================================================================
--- incubator/giraph/trunk/CHANGELOG (original)
+++ incubator/giraph/trunk/CHANGELOG Fri Dec 16 09:49:08 2011
@@ -2,6 +2,9 @@ Giraph Change Log
 
 Release 0.70.0 - unreleased
 
+  GIRAPH-103: Added properties for commonly used package version to
+  pom.xml. (aching)
+
   GIRAPH-57: Add new RPC call (putVertexIdMessagesList) to batch
   putMsgList RPCs together. (aching)
 

Modified: incubator/giraph/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/pom.xml?rev=1215076&r1=1215075&r2=1215076&view=diff
==============================================================================
--- incubator/giraph/trunk/pom.xml (original)
+++ incubator/giraph/trunk/pom.xml Fri Dec 16 09:49:08 2011
@@ -86,8 +86,8 @@ under the License.
       <name>Avery Ching</name>
       <email>aching@apache.org</email>
       <timezone>-8</timezone>
-      <organization>Yahoo!</organization>
-      <organizationUrl>http://www.yahoo.com</organizationUrl>
+      <organization>Facebook</organization>
+      <organizationUrl>http://www.facebook.com</organizationUrl>
     </developer>
     <developer>
       <id>hyunsik</id>
@@ -162,11 +162,15 @@ under the License.
   </developers>
 
   <properties>
+    <compileSource>1.6</compileSource>
     <hadoop.version>0.20.203.0</hadoop.version>
+    <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
+    <maven-javadoc-plugin.version>2.6</maven-javadoc-plugin.version>
     <jackson.version>1.8.0</jackson.version>
     <export-target.dir>export/target</export-target.dir>
     <buildtype>test</buildtype>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <munge-maven-plugin.version>1.0</munge-maven-plugin.version>
   </properties>
 
   <build>
@@ -248,16 +252,16 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.3.2</version>
+        <version>${maven-compiler-plugin.version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>${compileSource}</source>
+          <target>${compileSource}</target>
         </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.6</version>
+        <version>${maven-javadoc-plugin.version}</version>
       </plugin>
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
@@ -380,7 +384,7 @@ under the License.
           <plugin>
             <groupId>org.sonatype.plugins</groupId>
             <artifactId>munge-maven-plugin</artifactId>
-            <version>1.0</version>
+            <version>${munge-maven-plugin.version}</version>
             <executions>
               <execution>
                 <id>munge</id>
@@ -397,13 +401,14 @@ under the License.
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-compiler-plugin</artifactId>
-            <version>2.3.2</version>
+            <version>${maven-compiler-plugin.version}</version>
             <configuration>
               <excludes>
                 <exclude>**/BspTokenSelector.java</exclude>
               </excludes>
-              <source>1.6</source>
-              <target>1.6</target>
+              <source>${compileSource}</source>
+              <target>${compileSource}</target>
+              <showWarnings>true</showWarnings>
             </configuration>
           </plugin>
         </plugins>
@@ -440,7 +445,7 @@ under the License.
           <plugin>
             <groupId>org.sonatype.plugins</groupId>
             <artifactId>munge-maven-plugin</artifactId>
-            <version>1.0</version>
+            <version>${munge-maven-plugin.version}</version>
             <executions>
               <execution>
                 <id>munge</id>
@@ -457,13 +462,13 @@ under the License.
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-compiler-plugin</artifactId>
-            <version>2.3.2</version>
+            <version>${maven-compiler-plugin.version}</version>
             <configuration>
               <excludes>
                 <exclude>**/BspTokenSelector.java</exclude>
               </excludes>
-              <source>1.6</source>
-              <target>1.6</target>
+              <source>${compileSource}</source>
+              <target>${compileSource}</target>
             </configuration>
           </plugin>
         </plugins>