Perhaps more of just a question than an issue, but in a config I would like to have a list of key-value pairs, for example:
homes:
limit-permissions:
- example.node: 10
- example.node.other: 20
I tried using a MapProperty, but that doesn't seem to do what I want; it expects {ebonhomes.limits.example2=20, ebonhomes.limits.example=10}.
I could just do a list of Strings and split on :, but that's ugly, and I'd really not have to do that.
Is there something here that I missed that'll do what I want?
Perhaps more of just a question than an issue, but in a config I would like to have a list of key-value pairs, for example:
I tried using a
MapProperty, but that doesn't seem to do what I want; it expects{ebonhomes.limits.example2=20, ebonhomes.limits.example=10}.I could just do a list of Strings and split on
:, but that's ugly, and I'd really not have to do that.Is there something here that I missed that'll do what I want?