HADOOP-15263. hadoop cloud-storage module to mark hadoop-common as provided; add azure-datalake. Contributed by Steve Loughran
(cherry picked from commit edc9f1451b4af79069cd4b1d608b0fa68648ee72) (cherry picked from commit abfe1eaf29a31d96f63022a59e29392b773e6bc1) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/3c03672e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/3c03672e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/3c03672e Branch: refs/heads/branch-3.0 Commit: 3c03672e876ddbd6a6425ea1a056ad13adc309ea Parents: 0dcd0ea Author: Steve Loughran <[email protected]> Authored: Wed Feb 28 14:43:10 2018 +0000 Committer: Steve Loughran <[email protected]> Committed: Wed Feb 28 15:33:21 2018 +0000 ---------------------------------------------------------------------- hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml | 7 ++++++- hadoop-project/pom.xml | 6 ++++++ hadoop-tools/hadoop-azure-datalake/pom.xml | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/3c03672e/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml b/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml index ff22eab..af0b269 100644 --- a/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml +++ b/hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml @@ -47,7 +47,7 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> - <scope>compile</scope> + <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> @@ -120,6 +120,11 @@ </dependency> <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-azure-datalake</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-openstack</artifactId> <scope>compile</scope> </dependency> http://git-wip-us.apache.org/repos/asf/hadoop/blob/3c03672e/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 6f18f95..3c04470 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -519,6 +519,12 @@ <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-azure-datalake</artifactId> + <version>${project.version}</version> + </dependency> + + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-aws</artifactId> <version>${project.version}</version> </dependency> http://git-wip-us.apache.org/repos/asf/hadoop/blob/3c03672e/hadoop-tools/hadoop-azure-datalake/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-azure-datalake/pom.xml b/hadoop-tools/hadoop-azure-datalake/pom.xml index ed6daef..99dc969 100644 --- a/hadoop-tools/hadoop-azure-datalake/pom.xml +++ b/hadoop-tools/hadoop-azure-datalake/pom.xml @@ -116,6 +116,7 @@ <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.okhttp</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
