Skip to content

Commit 12f4b2e

Browse files
committed
dependency cleanup
1 parent 1531d11 commit 12f4b2e

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'maven-publish'
55
id 'com.jfrog.bintray' version '1.8.4'
66
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
7-
id 'org.jetbrains.dokka' version '0.10.0'
7+
id 'org.jetbrains.dokka' version '0.10.1'
88
id 'org.unbroken-dome.test-sets' version '2.2.1'
99
id "com.github.ben-manes.versions" version "0.27.0"
1010
}
@@ -45,22 +45,24 @@ testSets {
4545
check.dependsOn testInt
4646

4747
dependencies {
48-
implementation 'org.codehaus.groovy:groovy:3.0.0'
48+
implementation ('org.codehaus.groovy:groovy:3.0.0')
4949
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
5050
implementation 'io.swagger.parser.v3:swagger-parser:2.0.17'
5151
implementation 'com.google.googlejavaformat:google-java-format:1.7'
5252
compileOnly "com.github.hauner.openapi:openapi-generatr-api:$generatrApiVersion"
5353

5454
testImplementation ('org.spockframework:spock-core:2.0-M2-groovy-3.0') {
55-
exclude group: 'org.codehaus.groovy' // avoid conflicts with explicit groovy version
55+
exclude group: 'org.codehaus.groovy'
5656
}
57-
testImplementation 'org.spockframework:spock-junit4:2.0-M2-groovy-3.0'
58-
testImplementation 'net.bytebuddy:byte-buddy:1.9.13'
57+
testImplementation ('org.spockframework:spock-junit4:2.0-M2-groovy-3.0') {
58+
exclude group: 'org.codehaus.groovy'
59+
}
60+
testImplementation 'net.bytebuddy:byte-buddy:1.10.7'
5961
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
6062

6163
testIntImplementation "com.github.hauner.openapi:openapi-generatr-api:$generatrApiVersion"
6264
testIntImplementation 'io.github.java-diff-utils:java-diff-utils:4.5'
63-
testIntRuntimeOnly 'org.slf4j:slf4j-simple:1.7.30'
65+
// testIntRuntimeOnly 'org.slf4j:slf4j-simple:1.7.30'
6466
// testIntRuntimeOnly 'org.slf4j:slf4j-nop:1.6.1'
6567
}
6668

0 commit comments

Comments
 (0)