fourlastor
09/28/2017, 10:19 AMtasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
it.doFirst {
it.setSource(project.file('build/generated/source/food'))
}
}
this makes it compile correctlyeskatos
09/28/2017, 10:28 AMdoFirst
as it will be run after Gradle snapshots the task inputs, it may break the incrementallity of your buildfourlastor
09/28/2017, 10:40 AM