Skip to content

Commit 95401a5

Browse files
authored
Exclude commons-logging dependency from Elasticsearch dependencies.
Original Pull Request #1993 Closes #1989
1 parent 12cd64c commit 95401a5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Diff for: pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,25 @@
145145
<groupId>org.elasticsearch.client</groupId>
146146
<artifactId>transport</artifactId>
147147
<version>${elasticsearch}</version>
148+
<exclusions>
149+
<exclusion>
150+
<groupId>commons-logging</groupId>
151+
<artifactId>commons-logging</artifactId>
152+
</exclusion>
153+
</exclusions>
148154
</dependency>
149155

150156
<dependency>
151157
<!-- required by elasticsearch -->
152158
<groupId>org.elasticsearch.plugin</groupId>
153159
<artifactId>transport-netty4-client</artifactId>
154160
<version>${elasticsearch}</version>
161+
<exclusions>
162+
<exclusion>
163+
<groupId>commons-logging</groupId>
164+
<artifactId>commons-logging</artifactId>
165+
</exclusion>
166+
</exclusions>
155167
</dependency>
156168

157169
<dependency>

0 commit comments

Comments
 (0)