These ones I'm talking about:
implementation(project(path = projects.some.thing.subModule.path, configuration = "runtimeElements"))
implementation(project(projects.some.thing.subModule.path, configuration = "runtimeElements"))
They should be recognized and sorted along with all the others.
At the moment they fail with:
Could not determine dependency identifier. Failed to parse expression:
`testImplementation(project(path = projects.some.thing.subModule.path, configuration = "runtimeElements"))`
Could not determine dependency identifier. Failed to parse expression:
`testImplementation(project(projects.some.thing.subModule.path, configuration = "runtimeElements"))`
Note, these work fine:
compileOnly(project(path = ":some:thing:sub-module", configuration = "apiElements"))
compileOnly(project(":some:thing:sub-module", configuration = "apiElements"))
These ones I'm talking about:
They should be recognized and sorted along with all the others.
At the moment they fail with:
Note, these work fine: