Repository: incubator-blur Updated Branches: refs/heads/master 4ffed5c9c -> d2e67d714
Adding missing 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/d2e67d71 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/d2e67d71 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/d2e67d71 Branch: refs/heads/master Commit: d2e67d7148763f614f76e6be2c3c5e1bd35e6a29 Parents: 4ffed5c Author: Aaron McCurry <[email protected]> Authored: Fri Jan 2 16:19:31 2015 -0500 Committer: Aaron McCurry <[email protected]> Committed: Fri Jan 2 16:19:31 2015 -0500 ---------------------------------------------------------------------- blur-hive/pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/d2e67d71/blur-hive/pom.xml ---------------------------------------------------------------------- diff --git a/blur-hive/pom.xml b/blur-hive/pom.xml index 44d4a7f..6fb3a6c 100644 --- a/blur-hive/pom.xml +++ b/blur-hive/pom.xml @@ -192,6 +192,29 @@ <version>${hadoop.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.blur</groupId> + <artifactId>blur-mapred-hadoop1</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-store</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-query</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-gui</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-webapp</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </profile> <profile> @@ -214,6 +237,29 @@ <version>${hadoop.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.blur</groupId> + <artifactId>blur-mapred-hadoop2</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-store</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-query</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.blur</groupId> + <artifactId>blur-gui</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-webapp</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> </profile> </profiles>
