How can I exclude default `src/main/java` from `compileKotlin` task? I tried this, but it’s only app...
g
How can I exclude default
src/main/java
from
compileKotlin
task? I tried this, but it’s only appending the source dir and not excluding
Copy code
compileKotlin {
        sourceSets.main {
            java.srcDirs("${project.buildDir}/generated/sources/delombok/java/main")
        }
    }
Slack Conversation