From 02d64f966252970ffee393b1f287666da374d237 Mon Sep 17 00:00:00 2001 From: Thomas Dudziak <tomdzk@gmail.com> Date: Mon, 10 Dec 2012 21:27:54 -0800 Subject: [PATCH] Mark hadoop dependencies provided in all library artifacts --- bagel/pom.xml | 3 +++ examples/pom.xml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bagel/pom.xml b/bagel/pom.xml index b462801589..a8256a6e8b 100644 --- a/bagel/pom.xml +++ b/bagel/pom.xml @@ -55,6 +55,7 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> + <scope>provided</scope> </dependency> </dependencies> <build> @@ -81,10 +82,12 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> + <scope>provided</scope> </dependency> </dependencies> <build> diff --git a/examples/pom.xml b/examples/pom.xml index d2643f046c..782c026d73 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -55,6 +55,7 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> + <scope>provided</scope> </dependency> </dependencies> <build> @@ -81,10 +82,12 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> + <scope>provided</scope> </dependency> </dependencies> <build> -- GitLab