Skip to content

Commit ee67cd3

Browse files
committed
fixed dependencies
1 parent f0ac085 commit ee67cd3

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,18 @@ dependencies {
3030
compileOnly("com.github.hauner.openapi:openapi-processor-api:1.0.0")
3131

3232
implementation("org.codehaus.groovy:groovy:2.5.12")
33+
implementation("org.codehaus.groovy:groovy-nio:2.5.12")
3334
implementation("com.fasterxml.jackson.core:jackson-databind:2.11.0")
3435
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.0")
3536
implementation("io.github.java-diff-utils:java-diff-utils:4.7")
36-
api("com.google.jimfs:jimfs:1.1")
37+
implementation("com.google.jimfs:jimfs:1.1") {
38+
exclude("com.google.guava")
39+
}
3740

41+
compileOnly("junit:junit:4.13")
3842
implementation("org.junit.jupiter:junit-jupiter-api:5.6.2")
3943
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.2")
4044
runtimeOnly("org.junit.vintage:junit-vintage-engine:5.6.2")
41-
compileOnly("junit:junit:4.13")
4245
}
4346

4447
val sourcesJar by tasks.registering(Jar::class) {

0 commit comments

Comments
 (0)