Czar
08/22/2017, 8:01 AMTask with path 'copyMainKotlinClasses' not found in project
. In build.gradle
I have:
// groovy code should have access to kotlin classes for things like blablabla to work
tasks.compileGroovy.dependsOn 'copyMainKotlinClasses'
// and also for tests
tasks.compileTestGroovy.dependsOn 'copyTestKotlinClasses'
Gradle version: 4.0.1tapchicoma
08/22/2017, 11:13 AMcopyMainKotlinClasses
task? And why you need it?Czar
08/22/2017, 11:29 AMtapchicoma
08/22/2017, 11:53 AMCzar
08/22/2017, 12:22 PMtapchicoma
08/22/2017, 3:36 PMcopyMainKotlinClasses
task anymore, but I see compiled classes in build/classes/kotlin
folder. Maybe you don't need this dependsOn
anymore?compileKotlin
taskisSeparateClassesDirSupported
Czar
08/23/2017, 8:05 AM