Andrew
02/07/2021, 6:45 PMMarc Knaup
02/07/2021, 7:23 PMAndrew
02/07/2021, 7:27 PMVampire
02/07/2021, 7:51 PMilya.gorbunov
02/07/2021, 8:34 PMkotlinOptions
for all Kotlin compilations in the project:
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinCompile::class) {
kotlinOptions { ... }
}
Andrew
02/07/2021, 9:14 PMilya.gorbunov
02/07/2021, 9:18 PM::class
part.Animesh Sahu
02/08/2021, 7:00 AMtasks.withType<KotlinCompile> { ... }
as well o.O, it'll evaluate configuration block for all the tasks with given type.