You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, any objections replacing config with a structured file (YAML, etc) so that all configurable properties (AID list, origin, multiple app facets, etc.) can be configured in one place?
The text was updated successfully, but these errors were encountered:
I noticed that too, my resolution was to change the POM with this:
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
At the start of the <build> tag.
Otherwise it is not automatically picked up by the war task. Alternatively added a war rule to included it, but better to follow the default layout.
e.g.,
Also, any objections replacing config with a structured file (YAML, etc) so that all configurable properties (AID list, origin, multiple app facets, etc.) can be configured in one place?
The text was updated successfully, but these errors were encountered: