bjartek
compileTestGroovy.dependsOn compileTestKotlin compileTestGroovy.classpath += files(compileTestKotlin.destinationDir) testClasses.dependsOn compileTestGroovy
gildor
compileTestGroovy
efemoney
TaskProvider<T>
TaskContainer
build.gradle.kts
tasks { val compileTestKotlin by existing(KotlinCompile::class) compileTestGroovy.get().dependsOn(compileTestKotlin) compileTestGroovy.get().classpath += files(compileTestKotlin.get().destinationDir) testClasses.get().dependsOn(compileTestGroovy) }
compileTestKotlin
KotlinCompile
tasks { val compileTestKotlin by existing(KotlinCompile::class) compileTestGroovy { dependsOn(compileTestKotlin) classpath += files(compileTestKotlin.get().destinationDir) } testClasses { dependsOn(compileTestGroovy) } }
The task might have an accessor already generated or not depending on how the plugin is applied
A modern programming language that makes developers happier.