I have the following maven configuration:
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>keystore.jks</exclude>
</excludes>
</resource>
</resources>
I want to be keystore.jksincluded in my class / war application, but not handled by Maven filtering.
How to change this configuration?
source
share