1
0
mirror of synced 2026-05-22 20:23:18 +00:00

Exclude commons-logging dependency from Elasticsearch dependencies.

Original Pull Request #1993
Closes #1989

(cherry picked from commit 95401a5bd7)
(cherry picked from commit 15ca49a92e)
This commit is contained in:
Peter-Josef Meisch
2021-11-13 14:56:57 +01:00
parent d9359035c4
commit 873a6dee3c
+12
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>