thanksforallthefish
01/27/2020, 5:23 PMplugins {
id("org.hidetake.swagger.generator") version "2.18.1"
}
tasks {
withType<org.hidetake.gradle.swagger.generator.GenerateSwaggerUI> {
dependsOn("openapi3")
inputFile = file("$buildDir/api-spec/openapi3.json")
}
}
org.hidetake.gradle.swagger.generator.GenerateSwaggerUI
is red, causing then dependsOn
and inputFile
to be not recognizedthanksforallthefish
01/27/2020, 5:25 PMthanksforallthefish
01/27/2020, 5:25 PMDariusz Kuc
01/27/2020, 6:34 PMDariusz Kuc
01/27/2020, 6:34 PMthanksforallthefish
01/28/2020, 11:49 AMGradle from gradle.properties
and switched to wrapper task in gradle script
with no resultthanksforallthefish
01/28/2020, 11:50 AM