Skip to content

Commit 15ca49a

Browse files
committed
Exclude commons-logging dependency from Elasticsearch dependencies.
Original Pull Request #1993 Closes #1989 (cherry picked from commit 95401a5)
1 parent b7088f8 commit 15ca49a

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
@@ -152,13 +152,25 @@
152152
<groupId>org.elasticsearch.client</groupId>
153153
<artifactId>transport</artifactId>
154154
<version>${elasticsearch}</version>
155+
<exclusions>
156+
<exclusion>
157+
<groupId>commons-logging</groupId>
158+
<artifactId>commons-logging</artifactId>
159+
</exclusion>
160+
</exclusions>
155161
</dependency>
156162

157163
<dependency>
158164
<!-- required by elasticsearch -->
159165
<groupId>org.elasticsearch.plugin</groupId>
160166
<artifactId>transport-netty4-client</artifactId>
161167
<version>${elasticsearch}</version>
168+
<exclusions>
169+
<exclusion>
170+
<groupId>commons-logging</groupId>
171+
<artifactId>commons-logging</artifactId>
172+
</exclusion>
173+
</exclusions>
162174
</dependency>
163175

164176
<dependency>

0 commit comments

Comments
 (0)