Skip to content

Commit 5da2fc0

Browse files
committed
fixed missing dependency
1 parent 0bd45da commit 5da2fc0

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ version '1.0.0.A2'
1212
targetCompatibility = JavaVersion.VERSION_1_8
1313

1414
ext {
15+
generatrApiVersion = '1.0.0.B1'
16+
1517
bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
1618
bintrayKey = project.hasProperty ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
1719
}
@@ -34,14 +36,15 @@ dependencies {
3436
implementation 'org.codehaus.groovy:groovy:2.5.4'
3537
implementation 'io.swagger.parser.v3:swagger-parser:2.0.12'
3638
implementation 'org.yaml:snakeyaml:1.25'
37-
compileOnly 'com.github.hauner.openapi:openapi-generatr-api:1.0.0.B1'
39+
compileOnly "com.github.hauner.openapi:openapi-generatr-api:$generatrApiVersion"
3840

41+
testImplementation 'net.bytebuddy:byte-buddy:1.9.13'
3942
testImplementation ('org.spockframework:spock-core:1.3-groovy-2.5') {
4043
// avoid conflicts with explicit groovy version
4144
exclude group: 'org.codehaus.groovy'
4245
}
43-
testImplementation 'net.bytebuddy:byte-buddy:1.9.13'
4446

47+
testIntImplementation "com.github.hauner.openapi:openapi-generatr-api:$generatrApiVersion"
4548
testIntImplementation 'io.github.java-diff-utils:java-diff-utils:4.0'
4649
}
4750

0 commit comments

Comments
 (0)