cprop question: I'd like shallow merging of a conf file and resource, rather than deep merge-with type behavior. Is there a way to do that?
Or sorry, more precisely -- I'd like a conf file to simply override a conf resource
From the cprop README, where it says "If both are there, they will be merged. A file system source would override matching properties from a classpath source..."
So that to me implies, given resource {:foo {:bar true}}
and file {:foo {:baz "yes"}}
, my resulting config would be {:foo {:baz "yes"}}
Instead what I get is {:foo {:bar true, :baz "yes"}}