Skip to content

Commit acbfba9

Browse files
committed
Exclude commons-logging dependency.
`elasticsearch-rest-client` pulls in `commons-logging` and we don't want that to happen as it conflicts with our dependency setup. Closes #3104
1 parent 5a0f556 commit acbfba9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,19 @@
131131
</exclusion>
132132
</exclusions>
133133
</dependency>
134+
134135
<dependency>
135136
<groupId>org.elasticsearch.client</groupId>
136137
<artifactId>elasticsearch-rest-client</artifactId>
137138
<version>${elasticsearch-java}</version>
139+
<exclusions>
140+
<exclusion>
141+
<groupId>commons-logging</groupId>
142+
<artifactId>commons-logging</artifactId>
143+
</exclusion>
144+
</exclusions>
138145
</dependency>
139146

140-
141147
<!-- Jackson JSON Mapper -->
142148
<dependency>
143149
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)