Why doesn’t something like ```runTasks(listOf("ass...
# kobalt
d
Why doesn’t something like
Copy code
runTasks(listOf("assemble"),
    dependsOn = TreeMultimap.create<String, String>().apply {
        put("assemble", "compile")
        put("compile", "copyVersionForWrapper")
    },
    reverseDependsOn = TreeMultimap.create<String, String>().apply { }
    )
solve the problem— essentially flipping the reverseDependencies and putting them in the dependency list for resolution. Anything more complicated and I’ll need to clone it and play around with the tests simple smile