Skip to content

Commit 10d407a

Browse files
committed
Exclude commons-logging from ActiveMQ dependencies
Add commons logging exclusions to: * org.apache.activemq:activemq-leveldb-store * org.apache.activemq:activemq-spring * org.apache.activemq:activemq-console Fixes gh-4116
1 parent c2c451d commit 10d407a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -898,6 +898,12 @@
898898
<groupId>org.apache.activemq</groupId>
899899
<artifactId>activemq-console</artifactId>
900900
<version>${activemq.version}</version>
901+
<exclusions>
902+
<exclusion>
903+
<groupId>commons-logging</groupId>
904+
<artifactId>commons-logging</artifactId>
905+
</exclusion>
906+
</exclusions>
901907
</dependency>
902908
<dependency>
903909
<groupId>org.apache.activemq</groupId>
@@ -933,6 +939,12 @@
933939
<groupId>org.apache.activemq</groupId>
934940
<artifactId>activemq-leveldb-store</artifactId>
935941
<version>${activemq.version}</version>
942+
<exclusions>
943+
<exclusion>
944+
<groupId>commons-logging</groupId>
945+
<artifactId>commons-logging</artifactId>
946+
</exclusion>
947+
</exclusions>
936948
</dependency>
937949
<dependency>
938950
<groupId>org.apache.activemq</groupId>
@@ -993,6 +1005,12 @@
9931005
<groupId>org.apache.activemq</groupId>
9941006
<artifactId>activemq-spring</artifactId>
9951007
<version>${activemq.version}</version>
1008+
<exclusions>
1009+
<exclusion>
1010+
<groupId>commons-logging</groupId>
1011+
<artifactId>commons-logging</artifactId>
1012+
</exclusion>
1013+
</exclusions>
9961014
</dependency>
9971015
<dependency>
9981016
<groupId>org.apache.activemq</groupId>

0 commit comments

Comments
 (0)