Skip to content

Commit 14b66c7

Browse files
committed
reduce dependencies
1 parent 1204ff8 commit 14b66c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,14 @@ compileTestGroovy {
5656
classpath += files(compileKotlin.destinationDir)
5757
}
5858

59-
6059
dependencies {
6160
implementation 'org.codehaus.groovy:groovy:2.5.10'
6261
implementation 'org.codehaus.groovy:groovy-nio:2.5.10'
6362
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
64-
implementation 'io.swagger.parser.v3:swagger-parser:2.0.19'
63+
implementation ('io.swagger.parser.v3:swagger-parser:2.0.19') {
64+
exclude group: 'io.swagger.parser.v3', module: 'swagger-parser-v2-converter'
65+
exclude group: 'io.swagger.core.v3', module: 'swagger-annotations'
66+
}
6567
implementation 'org.openapi4j:openapi-parser:0.9'
6668
implementation 'com.google.googlejavaformat:google-java-format:1.7'
6769
compileOnly "com.github.hauner.openapi:openapi-processor-api:$processorApiVersion"
@@ -82,7 +84,6 @@ dependencies {
8284
// testIntRuntimeOnly 'org.slf4j:slf4j-nop:1.6.1'
8385
}
8486

85-
8687
tasks.withType(Test) {
8788
finalizedBy jacocoTestReport
8889
}

0 commit comments

Comments
 (0)