wiele powiązań SLF4J Błąd z activemq-all-5.6.0.jar

Po uaktualnieniu do activemq-all-5.6.0

Ten błąd pojawia się podczas uruchamiania serwera

SLF4J: Ścieżka klasy zawiera wiele powiązań SLF4J

Nie mam tego problemu podczas używania activemq-all-5.5.1

Podczas sprawdzania stwierdzam, że istnieje StaticLoggerBinder.class zarówno w activemq-all-5.6.0.jar, jak i slf4j-log4j12-1.5.10.jar, który powoduje problem

Pomóż w debugowaniu tego problemu

Mój plik pom.xml jest następujący

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.5.10</version>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>jcl-over-slf4j</artifactId>
    <version>1.5.10</version>
    <scope>runtime</scope>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.5.10</version>
    <scope>runtime</scope>
</dependency>

Zależność od aktywnego mq jest taka

Stara wersja 5.5.1 (to działa)

<dependency>
    <groupId>org.apache.activemq</groupId>
    <artifactId>activemq-all</artifactId>
    <version>5.5.1</version>
</dependency>

Nowa wersja 5.6.0 (to daje błąd)

<dependency>
    <groupId>org.apache.activemq</groupId>
    <artifactId>activemq-all</artifactId>
    <version>5.6.0</version>
</dependency>

Z góry dziękuję.

questionAnswers(2)

yourAnswerToTheQuestion