Title
d

dstarcev

03/24/2017, 5:56 PM
How do I change the dependency direction between
compileKotlin
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 (*)
šŸ‘ 1
s

Sola

03/25/2017, 6:27 AM
You did exactly what I did last week šŸ˜‚