Skip to content

Commit 1bf4253

Browse files
author
bnasslahsen
committed
Maven enforcer error. Fixes #728
1 parent feecc0c commit 1bf4253

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,14 @@ subprojects {
4747
dependency "org.springframework.boot:spring-boot-configuration-processor:${springBootVersion}"
4848
dependency "io.swagger.core.v3:swagger-models:${swaggerApiVersion}"
4949
dependency "io.swagger.core.v3:swagger-annotations:${swaggerApiVersion}"
50-
dependency "io.swagger.core.v3:swagger-integration:${swaggerApiVersion}"
50+
dependency("io.swagger.core.v3:swagger-integration:${swaggerApiVersion}") {
51+
exclude "io.github.classgraph:classgraph"
52+
}
5153
dependency "org.webjars:swagger-ui:${swaggerUiVersion}"
52-
dependency 'org.webjars:webjars-locator-core:0.45'
54+
dependency('org.webjars:webjars-locator-core:0.45') {
55+
exclude "io.github.classgraph:classgraph"
56+
}
57+
dependency 'io.github.classgraph:classgraph:4.8.69'
5358
dependency 'org.springframework.security:spring-security-core:5.3.2.RELEASE'
5459
dependency 'org.springframework.security.oauth:spring-security-oauth2:2.3.8.RELEASE'
5560
dependency 'javax.xml:jaxb-impl:2.1'

springdoc-openapi-common/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ dependencies {
77
api 'io.swagger.core.v3:swagger-models'
88
api 'io.swagger.core.v3:swagger-annotations'
99
api 'io.swagger.core.v3:swagger-integration'
10-
api 'org.apache.commons:commons-lang3'
10+
api 'io.github.classgraph:classgraph'
11+
api 'org.apache.commons:commons-lang3'
1112
}

0 commit comments

Comments
 (0)