Skip to content

Commit ec57c3d

Browse files
committed
Exclude commons-logging from Spring Security
Excluded the commons-logging dependency pulled in by Spring Security until they can provide a fix. See gh-8985
1 parent 28d6881 commit ec57c3d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

spring-boot-dependencies/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2214,6 +2214,17 @@
22142214
<scope>import</scope>
22152215
<type>pom</type>
22162216
</dependency>
2217+
<dependency>
2218+
<groupId>org.springframework.security</groupId>
2219+
<artifactId>spring-security-core</artifactId>
2220+
<version>${spring-security.version}</version>
2221+
<exclusions>
2222+
<exclusion>
2223+
<groupId>commons-logging</groupId>
2224+
<artifactId>commons-logging</artifactId>
2225+
</exclusion>
2226+
</exclusions>
2227+
</dependency>
22172228
<dependency>
22182229
<groupId>org.springframework.security</groupId>
22192230
<artifactId>spring-security-jwt</artifactId>

0 commit comments

Comments
 (0)