jlleitschuh
01/18/2017, 7:02 PMimport com.plexxi.gradle.swagger.SwaggerCodeGenPlugin
import io.swagger.codegen.config.CodegenConfigurator // This import can't be found
apply<SwaggerCodeGenPlugin>()
configure<CodegenConfigurator> { // This object.
outputDir = file("build/generated-sources/swagger").absolutePath
lang = "io.swagger.codegen.languages.SpringCodegen"
inputSpec = file("src/main/resources/com/plexxi/control/swagger.yaml").absolutePath
}
Gradle runs fine but intellij won't resolve the import.