dstarcev
03/24/2017, 5:56 PMcompileKotlin
and compileJava
tasks in gradle?
I try this
compileJava.dependsOn.remove(compileKotlin)
compileKotlin.dependsOn(compileJava)
but I am still getting the error
Circular dependency between the following tasks:
:backend:compileJava
\--- :backend:compileKotlin
\--- :backend:compileJava (*)
Sola
03/25/2017, 6:27 AM