Skip to content

Commit f9e8618

Browse files
committed
Add exclusions for Hadoop 3.3.6 and update exclusion rule message
1 parent 5c60e2a commit f9e8618

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

pom.xml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1562,14 +1562,6 @@
15621562
<artifactId>commons-cli</artifactId>
15631563
<version>${commons-cli.version}</version>
15641564
</dependency>
1565-
<dependency>
1566-
<!-- commons-logging is only used by hbase-http's HttpRequestLog and hbase-server's
1567-
HBaseTestingUtil.
1568-
-->
1569-
<groupId>commons-logging</groupId>
1570-
<artifactId>commons-logging</artifactId>
1571-
<version>1.2</version>
1572-
</dependency>
15731565
<dependency>
15741566
<groupId>org.apache.zookeeper</groupId>
15751567
<artifactId>zookeeper</artifactId>
@@ -2489,7 +2481,7 @@
24892481
<excludes>
24902482
<exclude>commons-logging:commons-logging</exclude>
24912483
</excludes>
2492-
<message>We don't use commons-logging any more, so do not depend on it directly.</message>
2484+
<message>We don't use commons-logging any more, so do not depend on it directly. We are also using jcl-over-slf4j for libraries so exclude any transitive commons-logging dependencies.</message>
24932485
<searchTransitive>true</searchTransitive>
24942486
</bannedDependencies>
24952487
</rules>
@@ -4154,6 +4146,10 @@
41544146
<groupId>org.openlabtesting.leveldbjni</groupId>
41554147
<artifactId>leveldbjni-all</artifactId>
41564148
</exclusion>
4149+
<exclusion>
4150+
<groupId>commons-logging</groupId>
4151+
<artifactId>commons-logging</artifactId>
4152+
</exclusion>
41574153
</exclusions>
41584154
</dependency>
41594155
<dependency>
@@ -4207,6 +4203,10 @@
42074203
<groupId>org.slf4j</groupId>
42084204
<artifactId>slf4j-reload4j</artifactId>
42094205
</exclusion>
4206+
<exclusion>
4207+
<groupId>commons-logging</groupId>
4208+
<artifactId>commons-logging</artifactId>
4209+
</exclusion>
42104210
</exclusions>
42114211
</dependency>
42124212
<dependency>
@@ -4459,6 +4459,10 @@
44594459
<groupId>org.bouncycastle</groupId>
44604460
<artifactId>bcpkix-jdk15on</artifactId>
44614461
</exclusion>
4462+
<exclusion>
4463+
<groupId>commons-logging</groupId>
4464+
<artifactId>commons-logging</artifactId>
4465+
</exclusion>
44624466
</exclusions>
44634467
</dependency>
44644468
<!--

0 commit comments

Comments
 (0)