Skip to content

Commit b2c3ffd

Browse files
committed
Managing outdated Classgraph version of webjars-locator-core. Fixes #1424.
1 parent fac2f4e commit b2c3ffd

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
<swagger-api.version>2.1.12</swagger-api.version>
7272
<swagger-ui.version>4.1.3</swagger-ui.version>
7373
<spring-security-oauth2.version>2.3.8.RELEASE</spring-security-oauth2.version>
74+
<classgraph.version>4.8.138</classgraph.version>
7475
<webjars-locator-core.version>0.45</webjars-locator-core.version>
7576
<gmavenplus-plugin.version>1.8.1</gmavenplus-plugin.version>
7677
<jaxb-impl.version>2.1</jaxb-impl.version>
@@ -99,12 +100,23 @@
99100
<groupId>org.webjars</groupId>
100101
<artifactId>webjars-locator-core</artifactId>
101102
<version>${webjars-locator-core.version}</version>
103+
<exclusions>
104+
<exclusion>
105+
<groupId>io.github.classgraph</groupId>
106+
<artifactId>classgraph</artifactId>
107+
</exclusion>
108+
</exclusions>
102109
</dependency>
103110
<dependency>
104111
<groupId>org.springframework.security.oauth</groupId>
105112
<artifactId>spring-security-oauth2</artifactId>
106113
<version>${spring-security-oauth2.version}</version>
107114
</dependency>
115+
<dependency>
116+
<groupId>io.github.classgraph</groupId>
117+
<artifactId>classgraph</artifactId>
118+
<version>${classgraph.version}</version>
119+
</dependency>
108120
<dependency>
109121
<groupId>javax.xml</groupId>
110122
<artifactId>jaxb-impl</artifactId>

springdoc-openapi-ui/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<groupId>org.webjars</groupId>
2828
<artifactId>webjars-locator-core</artifactId>
2929
</dependency>
30+
<dependency>
31+
<groupId>io.github.classgraph</groupId>
32+
<artifactId>classgraph</artifactId>
33+
</dependency>
3034
<dependency>
3135
<groupId>org.springframework.boot</groupId>
3236
<artifactId>spring-boot-starter-security</artifactId>

springdoc-openapi-webflux-ui/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
<groupId>org.webjars</groupId>
2323
<artifactId>webjars-locator-core</artifactId>
2424
</dependency>
25+
<dependency>
26+
<groupId>io.github.classgraph</groupId>
27+
<artifactId>classgraph</artifactId>
28+
</dependency>
2529
<!-- Actuator dependencies -->
2630
<dependency>
2731
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)