Given this:
implementation project(":feature:foo")
implementation project(":feature:foo-v2")
implementation project(":feature:foo:shared")
Running gradle-dependencies-sorter would result in:
implementation project(":feature:foo")
implementation project(":feature:foo:shared")
implementation project(":feature:foo-v2")
IMHO this is wrong. The ":feature:foo:shared" shouldn't be mixed with between foo and foo-v2.
Given this:
Running
gradle-dependencies-sorterwould result in:IMHO this is wrong. The ":feature:foo:shared" shouldn't be mixed with between
fooandfoo-v2.