Repository: incubator-blur Updated Branches: refs/heads/apache-blur-0.2 2f17851dc -> 55ff58fd0
Fixing some broken pom deps. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/55ff58fd Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/55ff58fd Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/55ff58fd Branch: refs/heads/apache-blur-0.2 Commit: 55ff58fd05d346f297d8b41e126ad3db649300b6 Parents: 2f17851 Author: Aaron McCurry <[email protected]> Authored: Wed Apr 30 10:53:41 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Wed Apr 30 10:53:41 2014 -0400 ---------------------------------------------------------------------- blur-shell/pom.xml | 45 +++++++++++++++++++++++++++++++++++++++++++++ blur-store/pom.xml | 5 +++++ 2 files changed, 50 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/55ff58fd/blur-shell/pom.xml ---------------------------------------------------------------------- diff --git a/blur-shell/pom.xml b/blur-shell/pom.xml index 4a6278a..a9feef0 100644 --- a/blur-shell/pom.xml +++ b/blur-shell/pom.xml @@ -128,4 +128,49 @@ under the License. </plugin> </plugins> </build> + + <profiles> + <profile> + <id>hadoop-1x</id> + <activation> + <property> + <name>hadoop1</name> + </property> + </activation> + <dependencies> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-core</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-test</artifactId> + <version>${hadoop.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + </profile> + <profile> + <id>hadoop-2.2</id> + <activation> + <property> + <name>hadoop2</name> + </property> + </activation> + <dependencies> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-client</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-minicluster</artifactId> + <version>${hadoop.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + </profile> + </profiles> </project> http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/55ff58fd/blur-store/pom.xml ---------------------------------------------------------------------- diff --git a/blur-store/pom.xml b/blur-store/pom.xml index 94a00bd..03e4416 100644 --- a/blur-store/pom.xml +++ b/blur-store/pom.xml @@ -160,6 +160,11 @@ under the License. <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-core</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-test</artifactId> <version>${hadoop.version}</version> <scope>test</scope>
