It would be nice to be able to use typesafe project accessors in the projectScopes property.
Currently only path syntax is supported:
projectScopes = [
":gateway" : "G"
]
So in order to use project accessors, you have to do something like:
projectScopes = [
projects.module.gateway.dependencyProject.path : "G"
]
Desired support:
projectScopes = [
projects.module.gateway : "G"
]