Repository: incubator-reef Updated Branches: refs/heads/master d35c6e0d9 -> e7c407ef9
[REEF-110] Move pom.xml to root of repository Fix moving pom.xml to root (PR #55) by adding root's relative path to sub-poms. JIRA: [REEF-110] https://issues.apache.org/jira/browse/REEF-110 Pull Request: This closes #58 Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/e7c407ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/e7c407ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/e7c407ef Branch: refs/heads/master Commit: e7c407ef9b09f082c45371e2019c2fd342a4701e Parents: d35c6e0 Author: Brian Cho <[email protected]> Authored: Mon Jan 26 14:38:02 2015 +0900 Committer: Markus Weimer <[email protected]> Committed: Mon Jan 26 09:48:57 2015 -0800 ---------------------------------------------------------------------- lang/java/reef-annotations/pom.xml | 1 + lang/java/reef-bridge-project/pom.xml | 1 + lang/java/reef-checkpoint/pom.xml | 1 + lang/java/reef-common/pom.xml | 1 + lang/java/reef-examples-clr/pom.xml | 1 + lang/java/reef-examples-hdinsight/pom.xml | 1 + lang/java/reef-examples/pom.xml | 1 + lang/java/reef-io/pom.xml | 1 + lang/java/reef-poison/pom.xml | 1 + lang/java/reef-runtime-hdinsight/pom.xml | 1 + lang/java/reef-runtime-local/pom.xml | 1 + lang/java/reef-runtime-mesos/pom.xml | 1 + lang/java/reef-runtime-yarn/pom.xml | 1 + lang/java/reef-tang/pom.xml | 1 + lang/java/reef-tests/pom.xml | 1 + lang/java/reef-utils-hadoop/pom.xml | 1 + lang/java/reef-utils/pom.xml | 1 + lang/java/reef-wake/pom.xml | 1 + lang/java/reef-webserver/pom.xml | 1 + 19 files changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-annotations/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-annotations/pom.xml b/lang/java/reef-annotations/pom.xml index 387312b..ddbcd88 100644 --- a/lang/java/reef-annotations/pom.xml +++ b/lang/java/reef-annotations/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-annotations</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-bridge-project/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-bridge-project/pom.xml b/lang/java/reef-bridge-project/pom.xml index 3e8dde5..2d7611c 100644 --- a/lang/java/reef-bridge-project/pom.xml +++ b/lang/java/reef-bridge-project/pom.xml @@ -30,6 +30,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-checkpoint/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-checkpoint/pom.xml b/lang/java/reef-checkpoint/pom.xml index 147a158..299e1f5 100644 --- a/lang/java/reef-checkpoint/pom.xml +++ b/lang/java/reef-checkpoint/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-checkpoint</artifactId> <name>REEF Checkpoint</name> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-common/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-common/pom.xml b/lang/java/reef-common/pom.xml index c2d5ee0..4ea48e2 100644 --- a/lang/java/reef-common/pom.xml +++ b/lang/java/reef-common/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-common</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-examples-clr/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-examples-clr/pom.xml b/lang/java/reef-examples-clr/pom.xml index 94bda88..2cb2171 100644 --- a/lang/java/reef-examples-clr/pom.xml +++ b/lang/java/reef-examples-clr/pom.xml @@ -28,6 +28,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <dependencies> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-examples-hdinsight/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-examples-hdinsight/pom.xml b/lang/java/reef-examples-hdinsight/pom.xml index ce52f92..e5c4706 100644 --- a/lang/java/reef-examples-hdinsight/pom.xml +++ b/lang/java/reef-examples-hdinsight/pom.xml @@ -27,6 +27,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <dependencies> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-examples/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-examples/pom.xml b/lang/java/reef-examples/pom.xml index b2eb3b7..f910a77 100644 --- a/lang/java/reef-examples/pom.xml +++ b/lang/java/reef-examples/pom.xml @@ -27,6 +27,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <dependencies> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-io/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-io/pom.xml b/lang/java/reef-io/pom.xml index c517e38..90bdf1d 100644 --- a/lang/java/reef-io/pom.xml +++ b/lang/java/reef-io/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-io</artifactId> <name>REEF IO</name> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-poison/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-poison/pom.xml b/lang/java/reef-poison/pom.xml index be12c30..6819e1d 100644 --- a/lang/java/reef-poison/pom.xml +++ b/lang/java/reef-poison/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-poison</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-runtime-hdinsight/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-hdinsight/pom.xml b/lang/java/reef-runtime-hdinsight/pom.xml index 1504b89..b9cb837 100644 --- a/lang/java/reef-runtime-hdinsight/pom.xml +++ b/lang/java/reef-runtime-hdinsight/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <name>REEF Runtime for HDInsight</name> <artifactId>reef-runtime-hdinsight</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-runtime-local/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-local/pom.xml b/lang/java/reef-runtime-local/pom.xml index 7dff839..3d83051 100644 --- a/lang/java/reef-runtime-local/pom.xml +++ b/lang/java/reef-runtime-local/pom.xml @@ -25,6 +25,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-runtime-local</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-runtime-mesos/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-mesos/pom.xml b/lang/java/reef-runtime-mesos/pom.xml index a5aa333..7cda9ce 100644 --- a/lang/java/reef-runtime-mesos/pom.xml +++ b/lang/java/reef-runtime-mesos/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <name>REEF Runtime for Mesos</name> <artifactId>reef-runtime-mesos</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-runtime-yarn/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-runtime-yarn/pom.xml b/lang/java/reef-runtime-yarn/pom.xml index faa1c22..345ef45 100644 --- a/lang/java/reef-runtime-yarn/pom.xml +++ b/lang/java/reef-runtime-yarn/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <name>REEF Runtime for YARN</name> <artifactId>reef-runtime-yarn</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-tang/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-tang/pom.xml b/lang/java/reef-tang/pom.xml index 35df7a5..a901c70 100644 --- a/lang/java/reef-tang/pom.xml +++ b/lang/java/reef-tang/pom.xml @@ -28,6 +28,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <modules> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-tests/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-tests/pom.xml b/lang/java/reef-tests/pom.xml index ee21633..330261c 100644 --- a/lang/java/reef-tests/pom.xml +++ b/lang/java/reef-tests/pom.xml @@ -29,6 +29,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-utils-hadoop/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-utils-hadoop/pom.xml b/lang/java/reef-utils-hadoop/pom.xml index d1e4375..420af95 100644 --- a/lang/java/reef-utils-hadoop/pom.xml +++ b/lang/java/reef-utils-hadoop/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-utils-hadoop</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-utils/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-utils/pom.xml b/lang/java/reef-utils/pom.xml index 62f4530..f553be8 100644 --- a/lang/java/reef-utils/pom.xml +++ b/lang/java/reef-utils/pom.xml @@ -24,6 +24,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <artifactId>reef-utils</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-wake/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-wake/pom.xml b/lang/java/reef-wake/pom.xml index 88eeea5..71ac8bb 100644 --- a/lang/java/reef-wake/pom.xml +++ b/lang/java/reef-wake/pom.xml @@ -29,6 +29,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <modules> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/e7c407ef/lang/java/reef-webserver/pom.xml ---------------------------------------------------------------------- diff --git a/lang/java/reef-webserver/pom.xml b/lang/java/reef-webserver/pom.xml index 581f8a1..32a6167 100644 --- a/lang/java/reef-webserver/pom.xml +++ b/lang/java/reef-webserver/pom.xml @@ -23,6 +23,7 @@ under the License. <groupId>org.apache.reef</groupId> <artifactId>reef-project</artifactId> <version>0.11.0-incubating-SNAPSHOT</version> + <relativePath>../../..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>reef-webserver</artifactId>
