HADOOP-15263. hadoop cloud-storage module to mark hadoop-common as provided; add azure-datalake.

Contributed by Steve Loughran
This commit is contained in:
Steve Loughran 2018-02-28 14:42:25 +00:00
parent e015e00989
commit edc9f1451b
3 changed files with 13 additions and 1 deletions

View File

@ -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>
@ -118,6 +118,11 @@
<artifactId>hadoop-azure</artifactId>
<scope>compile</scope>
</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>

View File

@ -540,6 +540,12 @@
<version>${project.version}</version>
</dependency>
<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>

View File

@ -116,6 +116,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>