11plugins {
22 groovy
3- id(" org.jetbrains.kotlin.jvm" ) version(" 1.3.60 " )
3+ id(" org.jetbrains.kotlin.jvm" ) version(" 1.3.72 " )
44 id(" maven-publish" )
5- id(" com.jfrog.bintray" ) version (" 1.8.4" )
5+ id(" com.jfrog.bintray" ) version (" 1.8.5" )
6+ id(" com.github.ben-manes.versions" ) version (" 0.28.0" )
67}
78
89group = " com.github.hauner.openapi"
@@ -16,7 +17,7 @@ repositories {
1617}
1718
1819project.ext {
19- set(" generatrApiVersion " , " 1.0.0.M4" )
20+ set(" processorApiVersion " , " 1.0.0.M4" )
2021
2122 set(" bintrayUser" , project.findProperty(" BINTRAY_USER" ) ? : " n/a" )
2223 set(" bintrayKey" , project.findProperty(" BINTRAY_KEY" ) ? : " n/a" )
@@ -26,13 +27,16 @@ dependencies {
2627// implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2728 implementation(kotlin(" stdlib" ))
2829
29- implementation(" io.swagger.parser.v3:swagger-parser:2.0.12" )
30- compileOnly(" com.github.hauner.openapi:openapi-processor-api:${project.ext.get(" generatrApiVersion" )} " )
30+ implementation(" io.swagger.parser.v3:swagger-parser:2.0.19" ) {
31+ exclude(group = " io.swagger.parser.v3" , module = " swagger-parser-v2-converter" )
32+ exclude(group = " io.swagger.core.v3" , module = " swagger-annotations" )
33+ }
34+ compileOnly(" com.github.hauner.openapi:openapi-processor-api:${project.ext.get(" processorApiVersion" )} " )
3135
32- testImplementation(" net.bytebuddy:byte-buddy:1.9.13 " )
36+ testImplementation(" net.bytebuddy:byte-buddy:1.10.10 " )
3337 testImplementation(" org.spockframework:spock-core:1.3-groovy-2.5" )
34- testImplementation(" io.github.java-diff-utils:java-diff-utils:4.0 " )
35- testImplementation(" com.github.hauner.openapi:openapi-processor-api:${project.ext.get(" generatrApiVersion " )} " )
38+ testImplementation(" io.github.java-diff-utils:java-diff-utils:4.7 " )
39+ testImplementation(" com.github.hauner.openapi:openapi-processor-api:${project.ext.get(" processorApiVersion " )} " )
3640}
3741
3842tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
0 commit comments