:
Mavenのリソースプラグインは逆の宣言順にリソースを追加します。ただ、一番上に設定-ローカルリソースを移動
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<!-- The resources will be placed in reversed order in the war
that means first entry will be added as last resource and may override other resources -->
<resource>
<!-- ATTENTION! we need the config-local declration at first cause it shall be placed as last resource in the classpath -->
<directory>config-local</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
をし、それが最後のリソースとして追加され、他のデフォルトファイルを上書きする可能性があります。 フォルダが存在しない場合、Mavenは問題なくスキップします。