<@U0QBCLV62> I'm seeing that classes that I have ...
# gradle
j
@bamboo I'm seeing that classes that I have dependencies in my buildSrc aren't getting resolved by intellij in subprojects of the root project:
Copy code
import 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.