I have a following maven configuration:
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>keystore.jks</exclude>
</excludes>
</resource>
</resources>
I want keystore.jks
to be included in my classes/war application but not to be processed by Maven filtering.
How to change this configuration ?
Binary filtering
According to the Maven Resource Filtering Documentation, this should work: