Remove slf4j as dependencies (#4233)

From the kafka-schema-registry-client in the avro extension slf4j
will be packaged into the distribution. We don't want this as it
will conflict and throw a slf4j multiple bindings warning.
This will cause slf4j to fall back to no-operation (NOP) binding.
This commit is contained in:
Fokko Driesprong 2017-05-12 08:59:14 +02:00 committed by Gian Merlino
parent 5e6539fec6
commit 5ca67644e7
1 changed files with 6 additions and 0 deletions

View File

@ -79,6 +79,12 @@
<groupId>io.confluent</groupId>
<artifactId>kafka-schema-registry-client</artifactId>
<version>${confluent.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>