1
0

[HUDI-2614] Remove duplicated hadoop-hdfs with tests classifier exists in bundles (#3864)

This commit is contained in:
vinoyang
2021-10-26 22:36:10 +08:00
committed by GitHub
parent e3fc74668f
commit b1c4acf0ae
17 changed files with 87 additions and 38 deletions

View File

@@ -121,6 +121,28 @@
<artifactId>junit-platform-commons</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
<!-- Need these exclusions to make sure JavaSparkContext can be setup. https://issues.apache.org/jira/browse/SPARK-1693 -->
<exclusions>
<exclusion>
<groupId>org.mortbay.jetty</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet.jsp</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>