glureau
07/28/2023, 1:59 PMjvm { withJava() } but looks like if I only do val jvmTest by getting { kotlin.srcDir("build/generated/.../jvmTest/java") /* ... */ } those classes are not compiled.glureau
07/28/2023, 2:03 PMval jvmTest by getting {
java.sourceSets {
getByName("test").java.srcDirs("build/generated/.../jvmTest/java")
}
}jw
07/28/2023, 2:03 PM@OutputDirectory of the task and automatically create the necessary task dependencies.glureau
07/28/2023, 2:07 PM