Skip to content

Commit e45f151

Browse files
committed
HADOOP-19343: Include hadoop-gcp in hadoop-cloud-storage.
Closes #7910
1 parent 33f46b7 commit e45f151

File tree

2 files changed

+21
-0
lines changed
  • hadoop-cloud-storage-project/hadoop-cloud-storage
  • hadoop-project

2 files changed

+21
-0
lines changed

hadoop-cloud-storage-project/hadoop-cloud-storage/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,20 @@
130130
<artifactId>hadoop-tos</artifactId>
131131
<scope>compile</scope>
132132
</dependency>
133+
<dependency>
134+
<groupId>org.apache.hadoop</groupId>
135+
<artifactId>hadoop-gcp</artifactId>
136+
<scope>compile</scope>
137+
<!--
138+
Exclude transitive dependencies to prevent dependency convergence
139+
problems. hadoop-gcp is a self-contained shaded jar.
140+
-->
141+
<exclusions>
142+
<exclusion>
143+
<groupId>*</groupId>
144+
<artifactId>*</artifactId>
145+
</exclusion>
146+
</exclusions>
147+
</dependency>
133148
</dependencies>
134149
</project>

hadoop-project/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,12 @@
793793
<version>${hadoop.version}</version>
794794
</dependency>
795795

796+
<dependency>
797+
<groupId>org.apache.hadoop</groupId>
798+
<artifactId>hadoop-gcp</artifactId>
799+
<version>${hadoop.version}</version>
800+
</dependency>
801+
796802
<dependency>
797803
<groupId>org.apache.hadoop</groupId>
798804
<artifactId>hadoop-kms</artifactId>

0 commit comments

Comments
 (0)