Skip to content

Commit 8a54c60

Browse files
author
bnasslahsen
committed
ambitious classgraph version. Fixes #447
1 parent 5ced0b5 commit 8a54c60

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<swagger-ui.version>3.25.0</swagger-ui.version>
7373
<webjars-locator.version>0.38</webjars-locator.version>
7474
<spring-security-oauth2.version>2.3.8.RELEASE</spring-security-oauth2.version>
75+
<classgraph.version>4.8.44</classgraph.version>
7576
</properties>
7677

7778
<dependencyManagement>
@@ -90,6 +91,12 @@
9091
<dependency>
9192
<groupId>io.swagger.core.v3</groupId>
9293
<artifactId>swagger-integration</artifactId>
94+
<exclusions>
95+
<exclusion>
96+
<groupId>io.github.classgraph</groupId>
97+
<artifactId>classgraph</artifactId>
98+
</exclusion>
99+
</exclusions>
93100
<version>${swagger-api.version}</version>
94101
</dependency>
95102
<!-- swagger ui -->
@@ -108,6 +115,11 @@
108115
<artifactId>spring-security-oauth2</artifactId>
109116
<version>${spring-security-oauth2.version}</version>
110117
</dependency>
118+
<dependency>
119+
<groupId>io.github.classgraph</groupId>
120+
<artifactId>classgraph</artifactId>
121+
<version>${classgraph.version}</version>
122+
</dependency>
111123
</dependencies>
112124
</dependencyManagement>
113125
<dependencies>

springdoc-openapi-common/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@
3333
<groupId>io.swagger.core.v3</groupId>
3434
<artifactId>swagger-integration</artifactId>
3535
</dependency>
36+
<dependency>
37+
<groupId>io.github.classgraph</groupId>
38+
<artifactId>classgraph</artifactId>
39+
</dependency>
3640
<dependency>
3741
<groupId>org.apache.commons</groupId>
3842
<artifactId>commons-lang3</artifactId>

0 commit comments

Comments
 (0)