inductiveautomation / inductiveautomation/ignition-module-tools
Add ability to use Typesafe Project Accessors in projectScopes
Open
- Dominant language
- Kotlin
- Stars
- 73
- Forks
- 20
- PR merge metrics
- No merged PRs in 30d
Description
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"
]
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.