Skip to content

Commit f02c390

Browse files
committed
Simplify commons-logging exclusions and remove redundant dep mgmnt
c719ab7 adding dependency management for a number of Apache Commons projects to exclude commons-logging and resolve problems with dependency convergence. As Boot's dependencies have evolved, much of this dependency management has become redundant. This commit removes it, and excludes commons-logging in the single starter that still needs it instead. Closes gh-7050
1 parent 544da5e commit f02c390

File tree

1 file changed

+6
-30
lines changed
  • spring-boot-project/spring-boot-dependencies

1 file changed

+6
-30
lines changed

spring-boot-project/spring-boot-dependencies/pom.xml

+6-30
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,8 @@
3636
<caffeine.version>2.6.0</caffeine.version>
3737
<cassandra-driver.version>3.3.0</cassandra-driver.version>
3838
<classmate.version>1.3.4</classmate.version>
39-
<commons-beanutils.version>1.9.3</commons-beanutils.version>
40-
<commons-collections.version>3.2.2</commons-collections.version>
4139
<commons-codec.version>1.11</commons-codec.version>
4240
<commons-dbcp2.version>2.1.1</commons-dbcp2.version>
43-
<commons-digester.version>2.1</commons-digester.version>
4441
<commons-lang3.version>3.6</commons-lang3.version>
4542
<commons-pool.version>1.6</commons-pool.version>
4643
<commons-pool2.version>2.4.3</commons-pool2.version>
@@ -741,38 +738,11 @@
741738
<artifactId>HikariCP</artifactId>
742739
<version>${hikaricp.version}</version>
743740
</dependency>
744-
<dependency>
745-
<groupId>commons-beanutils</groupId>
746-
<artifactId>commons-beanutils</artifactId>
747-
<version>${commons-beanutils.version}</version>
748-
<exclusions>
749-
<exclusion>
750-
<groupId>commons-logging</groupId>
751-
<artifactId>commons-logging</artifactId>
752-
</exclusion>
753-
</exclusions>
754-
</dependency>
755-
<dependency>
756-
<groupId>commons-collections</groupId>
757-
<artifactId>commons-collections</artifactId>
758-
<version>${commons-collections.version}</version>
759-
</dependency>
760741
<dependency>
761742
<groupId>commons-codec</groupId>
762743
<artifactId>commons-codec</artifactId>
763744
<version>${commons-codec.version}</version>
764745
</dependency>
765-
<dependency>
766-
<groupId>commons-digester</groupId>
767-
<artifactId>commons-digester</artifactId>
768-
<version>${commons-digester.version}</version>
769-
<exclusions>
770-
<exclusion>
771-
<groupId>commons-logging</groupId>
772-
<artifactId>commons-logging</artifactId>
773-
</exclusion>
774-
</exclusions>
775-
</dependency>
776746
<dependency>
777747
<groupId>commons-pool</groupId>
778748
<artifactId>commons-pool</artifactId>
@@ -1285,6 +1255,12 @@
12851255
<groupId>org.apache.activemq</groupId>
12861256
<artifactId>artemis-commons</artifactId>
12871257
<version>${artemis.version}</version>
1258+
<exclusions>
1259+
<exclusion>
1260+
<groupId>commons-logging</groupId>
1261+
<artifactId>commons-logging</artifactId>
1262+
</exclusion>
1263+
</exclusions>
12881264
</dependency>
12891265
<dependency>
12901266
<groupId>org.apache.activemq</groupId>

0 commit comments

Comments
 (0)