Exclude commons-logging dependency from Elasticsearch dependencies.

Original Pull Request #1993
Closes #1989

(cherry picked from commit 95401a5bd783097c7e1aaf7dc35648a9cb90a970)
This commit is contained in:
Peter-Josef Meisch 2021-11-13 14:56:57 +01:00
parent b7088f8002
commit 15ca49a92e
No known key found for this signature in database
GPG Key ID: DE108246970C7708

12
pom.xml
View File

@ -152,6 +152,12 @@
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>${elasticsearch}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
@ -159,6 +165,12 @@
<groupId>org.elasticsearch.plugin</groupId>
<artifactId>transport-netty4-client</artifactId>
<version>${elasticsearch}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>