You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by se...@apache.org on 2014/10/23 22:02:36 UTC

git commit: Major POM updates

Repository: incubator-reef
Updated Branches:
  refs/heads/master 4625d202f -> ce9fc22d0


Major POM updates

This addresses https://issues.apache.org/jira/browse/REEF-12 :

  * All versions now have -incubating in them
  * Other cleanups of the POMs to move as much of the dependency information into the top-level POM as possible
Closes #2


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/ce9fc22d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/ce9fc22d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/ce9fc22d

Branch: refs/heads/master
Commit: ce9fc22d01a89467adb042651a9d75e47e19dddd
Parents: 4625d20
Author: Markus Weimer <we...@apache.org>
Authored: Thu Oct 23 11:42:56 2014 -0700
Committer: Beysim Sezgin <be...@microsoft.com>
Committed: Thu Oct 23 12:58:00 2014 -0700

----------------------------------------------------------------------
 pom.xml                                      | 50 ++++++++++++++++++++---
 reef-annotations/pom.xml                     |  5 ++-
 reef-bridge-project/pom.xml                  |  2 +-
 reef-bridge-project/reef-bridge-clr/pom.xml  |  5 ++-
 reef-bridge-project/reef-bridge-java/pom.xml |  3 +-
 reef-bridge-project/reef-bridge/pom.xml      |  2 +-
 reef-checkpoint/pom.xml                      |  2 +-
 reef-common/pom.xml                          |  3 +-
 reef-examples-clr/pom.xml                    |  2 +-
 reef-examples-hdinsight/pom.xml              |  2 +-
 reef-examples/pom.xml                        |  2 +-
 reef-io/pom.xml                              | 15 ++++---
 reef-poison/pom.xml                          |  6 +--
 reef-runtime-hdinsight/pom.xml               |  9 +---
 reef-runtime-local/pom.xml                   |  5 ++-
 reef-runtime-yarn/pom.xml                    |  2 +-
 reef-tang/pom.xml                            |  6 +--
 reef-tang/tang-test-jarA/pom.xml             |  5 ++-
 reef-tang/tang-test-jarAB/pom.xml            |  5 ++-
 reef-tang/tang-test-jarB-conflictA/pom.xml   |  5 ++-
 reef-tang/tang-test-jarB/pom.xml             |  5 ++-
 reef-tang/tang/pom.xml                       |  5 +--
 reef-tests/pom.xml                           |  2 +-
 reef-utils-hadoop/pom.xml                    |  2 +-
 reef-wake/pom.xml                            |  2 +-
 reef-wake/wake/pom.xml                       |  3 +-
 reef-webserver/pom.xml                       |  2 +-
 27 files changed, 95 insertions(+), 62 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 89e0e50..bf6572c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
 
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.reef</groupId>
-    <version>0.10-SNAPSHOT</version>
+    <version>0.10-incubating-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>REEF</name>
     <artifactId>reef-project</artifactId>
@@ -32,9 +32,8 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <hadoop.version>2.4.0</hadoop.version>
         <avro.version>1.7.7</avro.version>
-        <tang.version>0.10-SNAPSHOT</tang.version>
-        <wake.version>0.10-SNAPSHOT</wake.version>
         <jetty.version>6.1.26</jetty.version>
+        <jackson.version>1.9.13</jackson.version>
     </properties>
 
 
@@ -185,6 +184,11 @@
                     <artifactId>maven-dependency-plugin</artifactId>
                     <version>2.9</version>
                 </plugin>
+                <plugin>
+                    <groupId>org.eclipse.m2e</groupId>
+                    <artifactId>lifecycle-mapping</artifactId>
+                    <version>1.0.0</version>
+                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
@@ -228,12 +232,12 @@
         <dependencies>
             <!-- Tang and Wake -->
             <dependency>
-                <groupId>org.apache.reef</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>tang</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.apache.reef</groupId>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>wake</artifactId>
                 <version>${project.version}</version>
             </dependency>
@@ -404,7 +408,13 @@
                 <artifactId>commons-configuration</artifactId>
                 <version>1.10</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-math3</artifactId>
+                <version>3.3</version>
+            </dependency>
             <!-- End of Apache Commons -->
+
             <!-- AVRO -->
             <dependency>
                 <groupId>org.apache.avro</groupId>
@@ -463,6 +473,36 @@
                 <artifactId>reflections</artifactId>
                 <version>0.9.9-RC1</version>
             </dependency>
+
+            <!-- Microsoft Azure libraries -->
+            <dependency>
+                <groupId>com.microsoft.windowsazure.storage</groupId>
+                <artifactId>microsoft-windowsazure-storage-sdk</artifactId>
+                <version>0.5.0</version>
+            </dependency>
+            <!-- End of Microsoft Azure libraries -->
+
+            <!-- Apache HTTP components -->
+            <dependency>
+                <groupId>org.apache.httpcomponents</groupId>
+                <artifactId>httpclient</artifactId>
+                <version>4.3.4</version>
+            </dependency>
+            <!-- End of Apache HTTP components -->
+
+
+            <!-- Jackson -->
+            <dependency>
+                <groupId>org.codehaus.jackson</groupId>
+                <artifactId>jackson-mapper-asl</artifactId>
+                <version>${jackson.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.codehaus.jackson</groupId>
+                <artifactId>jackson-core-asl</artifactId>
+                <version>${jackson.version}</version>
+            </dependency>
+            <!-- End of Jackson -->
         </dependencies>
     </dependencyManagement>
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-annotations/pom.xml
----------------------------------------------------------------------
diff --git a/reef-annotations/pom.xml b/reef-annotations/pom.xml
index 3c45c2a..1573f0f 100644
--- a/reef-annotations/pom.xml
+++ b/reef-annotations/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>reef-annotations</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-bridge-project/pom.xml
----------------------------------------------------------------------
diff --git a/reef-bridge-project/pom.xml b/reef-bridge-project/pom.xml
index b60b2c0..53089ff 100644
--- a/reef-bridge-project/pom.xml
+++ b/reef-bridge-project/pom.xml
@@ -11,7 +11,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-bridge-project/reef-bridge-clr/pom.xml
----------------------------------------------------------------------
diff --git a/reef-bridge-project/reef-bridge-clr/pom.xml b/reef-bridge-project/reef-bridge-clr/pom.xml
index 15cad77..630f683 100644
--- a/reef-bridge-project/reef-bridge-clr/pom.xml
+++ b/reef-bridge-project/reef-bridge-clr/pom.xml
@@ -1,5 +1,6 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <artifactId>reef-bridge-clr</artifactId>
     <name>REEF Bridge CLR</name>
@@ -9,7 +10,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-bridge-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-bridge-project/reef-bridge-java/pom.xml
----------------------------------------------------------------------
diff --git a/reef-bridge-project/reef-bridge-java/pom.xml b/reef-bridge-project/reef-bridge-java/pom.xml
index 138cf2d..1acbde7 100644
--- a/reef-bridge-project/reef-bridge-java/pom.xml
+++ b/reef-bridge-project/reef-bridge-java/pom.xml
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-bridge-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <dependencies>
@@ -67,7 +67,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-antrun-plugin</artifactId>
-                <version>1.7</version>
                 <executions>
                     <execution>
                         <phase>process-classes</phase>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-bridge-project/reef-bridge/pom.xml
----------------------------------------------------------------------
diff --git a/reef-bridge-project/reef-bridge/pom.xml b/reef-bridge-project/reef-bridge/pom.xml
index 501d1b1..df3879c 100644
--- a/reef-bridge-project/reef-bridge/pom.xml
+++ b/reef-bridge-project/reef-bridge/pom.xml
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-bridge-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-checkpoint/pom.xml
----------------------------------------------------------------------
diff --git a/reef-checkpoint/pom.xml b/reef-checkpoint/pom.xml
index 306ca2f..4af6f90 100644
--- a/reef-checkpoint/pom.xml
+++ b/reef-checkpoint/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>reef-checkpoint</artifactId>
     <name>REEF Checkpoint</name>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-common/pom.xml
----------------------------------------------------------------------
diff --git a/reef-common/pom.xml b/reef-common/pom.xml
index a67349a..ef5ed3a 100644
--- a/reef-common/pom.xml
+++ b/reef-common/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>reef-common</artifactId>
@@ -69,7 +69,6 @@
                 <plugin>
                     <groupId>org.eclipse.m2e</groupId>
                     <artifactId>lifecycle-mapping</artifactId>
-                    <version>1.0.0</version>
                     <configuration>
                         <lifecycleMappingMetadata>
                             <pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-examples-clr/pom.xml
----------------------------------------------------------------------
diff --git a/reef-examples-clr/pom.xml b/reef-examples-clr/pom.xml
index 4663136..2559c3e 100644
--- a/reef-examples-clr/pom.xml
+++ b/reef-examples-clr/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-examples-hdinsight/pom.xml
----------------------------------------------------------------------
diff --git a/reef-examples-hdinsight/pom.xml b/reef-examples-hdinsight/pom.xml
index 6690bfc..26d340e 100644
--- a/reef-examples-hdinsight/pom.xml
+++ b/reef-examples-hdinsight/pom.xml
@@ -8,7 +8,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-examples/pom.xml
----------------------------------------------------------------------
diff --git a/reef-examples/pom.xml b/reef-examples/pom.xml
index 2375020..e90baa3 100644
--- a/reef-examples/pom.xml
+++ b/reef-examples/pom.xml
@@ -8,7 +8,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <dependencies>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-io/pom.xml
----------------------------------------------------------------------
diff --git a/reef-io/pom.xml b/reef-io/pom.xml
index 1b83e11..19ce303 100644
--- a/reef-io/pom.xml
+++ b/reef-io/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
     <artifactId>reef-io</artifactId>
     <name>REEF IO</name>
@@ -20,11 +20,11 @@
                         <phase>generate-sources</phase>
                         <configuration>
                             <tasks>
-                                <mkdir dir="target/generated-sources/proto" />
+                                <mkdir dir="target/generated-sources/proto"/>
                                 <exec executable="protoc">
-                                    <arg value="--proto_path=src/main/proto/" />
-                                    <arg value="--java_out=target/generated-sources/proto" />
-                                    <arg value="src/main/proto/ns_protocol.proto" />
+                                    <arg value="--proto_path=src/main/proto/"/>
+                                    <arg value="--java_out=target/generated-sources/proto"/>
+                                    <arg value="src/main/proto/ns_protocol.proto"/>
                                 </exec>
                             </tasks>
                             <sourceRoot>target/generated-sources/proto</sourceRoot>
@@ -67,7 +67,6 @@
                 <plugin>
                     <groupId>org.eclipse.m2e</groupId>
                     <artifactId>lifecycle-mapping</artifactId>
-                    <version>1.0.0</version>
                     <configuration>
                         <lifecycleMappingMetadata>
                             <pluginExecutions>
@@ -87,7 +86,7 @@
                                         </goals>
                                     </pluginExecutionFilter>
                                     <action>
-                                        <ignore />
+                                        <ignore/>
                                     </action>
                                 </pluginExecution>
                                 <pluginExecution>
@@ -106,7 +105,7 @@
                                         </goals>
                                     </pluginExecutionFilter>
                                     <action>
-                                        <ignore />
+                                        <ignore/>
                                     </action>
                                 </pluginExecution>
                             </pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-poison/pom.xml
----------------------------------------------------------------------
diff --git a/reef-poison/pom.xml b/reef-poison/pom.xml
index 448d8e9..ad3146c 100644
--- a/reef-poison/pom.xml
+++ b/reef-poison/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>reef-poison</artifactId>
@@ -28,7 +29,6 @@
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-math3</artifactId>
-            <version>3.3</version>
         </dependency>
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-runtime-hdinsight/pom.xml
----------------------------------------------------------------------
diff --git a/reef-runtime-hdinsight/pom.xml b/reef-runtime-hdinsight/pom.xml
index daccf85..b3f235f 100644
--- a/reef-runtime-hdinsight/pom.xml
+++ b/reef-runtime-hdinsight/pom.xml
@@ -5,14 +5,11 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
     <name>REEF Runtime for HDInsight</name>
     <artifactId>reef-runtime-hdinsight</artifactId>
 
-    <properties>
-        <jackson.version>1.9.13</jackson.version>
-    </properties>
     <dependencies>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -27,23 +24,19 @@
         <dependency>
             <groupId>com.microsoft.windowsazure.storage</groupId>
             <artifactId>microsoft-windowsazure-storage-sdk</artifactId>
-            <version>0.5.0</version>
         </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
-            <version>4.3.4</version>
         </dependency>
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-mapper-asl</artifactId>
-            <version>${jackson.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-core-asl</artifactId>
-            <version>${jackson.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-runtime-local/pom.xml
----------------------------------------------------------------------
diff --git a/reef-runtime-local/pom.xml b/reef-runtime-local/pom.xml
index fd71165..46e5574 100644
--- a/reef-runtime-local/pom.xml
+++ b/reef-runtime-local/pom.xml
@@ -1,11 +1,12 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>reef-runtime-local</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-runtime-yarn/pom.xml
----------------------------------------------------------------------
diff --git a/reef-runtime-yarn/pom.xml b/reef-runtime-yarn/pom.xml
index 2410536..499c481 100644
--- a/reef-runtime-yarn/pom.xml
+++ b/reef-runtime-yarn/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
     <name>REEF Runtime for YARN</name>
     <artifactId>reef-runtime-yarn</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/pom.xml b/reef-tang/pom.xml
index 06a065e..89e9684 100644
--- a/reef-tang/pom.xml
+++ b/reef-tang/pom.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
-    <version>0.10-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>REEF Tang Project</name>
     <artifactId>tang-project</artifactId>
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <modules>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/tang-test-jarA/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/tang-test-jarA/pom.xml b/reef-tang/tang-test-jarA/pom.xml
index a4f4566..12a05c3 100644
--- a/reef-tang/tang-test-jarA/pom.xml
+++ b/reef-tang/tang-test-jarA/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarA</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/tang-test-jarAB/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/tang-test-jarAB/pom.xml b/reef-tang/tang-test-jarAB/pom.xml
index 87068cb..927b483 100644
--- a/reef-tang/tang-test-jarAB/pom.xml
+++ b/reef-tang/tang-test-jarAB/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarAB</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/tang-test-jarB-conflictA/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/tang-test-jarB-conflictA/pom.xml b/reef-tang/tang-test-jarB-conflictA/pom.xml
index e159288..c812492 100644
--- a/reef-tang/tang-test-jarB-conflictA/pom.xml
+++ b/reef-tang/tang-test-jarB-conflictA/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarB-conflictA</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/tang-test-jarB/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/tang-test-jarB/pom.xml b/reef-tang/tang-test-jarB/pom.xml
index 42e1de3..54fc702 100644
--- a/reef-tang/tang-test-jarB/pom.xml
+++ b/reef-tang/tang-test-jarB/pom.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang-test-jarB</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tang/tang/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tang/tang/pom.xml b/reef-tang/tang/pom.xml
index a12ef86..4d01519 100644
--- a/reef-tang/tang/pom.xml
+++ b/reef-tang/tang/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>tang-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>tang</artifactId>
@@ -67,7 +67,6 @@
             <plugin>
                 <groupId>org.apache.avro</groupId>
                 <artifactId>avro-maven-plugin</artifactId>
-                <version>1.7.6</version>
                 <executions>
                     <execution>
                         <phase>generate-sources</phase>
@@ -89,7 +88,6 @@
                 <plugin>
                     <groupId>org.eclipse.m2e</groupId>
                     <artifactId>lifecycle-mapping</artifactId>
-                    <version>1.0.0</version>
                     <configuration>
                         <lifecycleMappingMetadata>
                             <pluginExecutions>
@@ -168,7 +166,6 @@
         <dependency>
             <groupId>org.apache.avro</groupId>
             <artifactId>avro</artifactId>
-            <version>1.7.6</version>
         </dependency>
     </dependencies>
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-tests/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tests/pom.xml b/reef-tests/pom.xml
index ef0040a..8872de9 100644
--- a/reef-tests/pom.xml
+++ b/reef-tests/pom.xml
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-utils-hadoop/pom.xml
----------------------------------------------------------------------
diff --git a/reef-utils-hadoop/pom.xml b/reef-utils-hadoop/pom.xml
index 4f7d813..277a011 100644
--- a/reef-utils-hadoop/pom.xml
+++ b/reef-utils-hadoop/pom.xml
@@ -5,7 +5,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <artifactId>reef-utils-hadoop</artifactId>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-wake/pom.xml
----------------------------------------------------------------------
diff --git a/reef-wake/pom.xml b/reef-wake/pom.xml
index d48e38a..2577967 100644
--- a/reef-wake/pom.xml
+++ b/reef-wake/pom.xml
@@ -10,7 +10,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <modules>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-wake/wake/pom.xml
----------------------------------------------------------------------
diff --git a/reef-wake/wake/pom.xml b/reef-wake/wake/pom.xml
index 6bdc536..6bb73d5 100644
--- a/reef-wake/wake/pom.xml
+++ b/reef-wake/wake/pom.xml
@@ -9,7 +9,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>wake-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
 
     <build>
@@ -84,7 +84,6 @@
                 <plugin>
                     <groupId>org.eclipse.m2e</groupId>
                     <artifactId>lifecycle-mapping</artifactId>
-                    <version>1.0.0</version>
                     <configuration>
                         <lifecycleMappingMetadata>
                             <pluginExecutions>

http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/ce9fc22d/reef-webserver/pom.xml
----------------------------------------------------------------------
diff --git a/reef-webserver/pom.xml b/reef-webserver/pom.xml
index d71c26d..39ca230 100644
--- a/reef-webserver/pom.xml
+++ b/reef-webserver/pom.xml
@@ -4,7 +4,7 @@
     <parent>
         <groupId>org.apache.reef</groupId>
         <artifactId>reef-project</artifactId>
-        <version>0.10-SNAPSHOT</version>
+        <version>0.10-incubating-SNAPSHOT</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>reef-webserver</artifactId>