I have a resource folder that contains some JPEG images. Each of the
images is altered after process-resources.
I tried to exclude jpgs from filtering like that:
<!-- Alles außer JPEGs Filtern -->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>**/*.jpg</exclude>
</excludes>
</resource>
<!-- und nochmal ohne Filter für JPEGs -->
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*.jpg</include>
</includes>
</resource>
But no luck...
Then I found that jpeg should not be filtered at all by default:
http://www.mail-archive.com/[EMAIL PROTECTED]/msg15806.html
But they are. It's reproducible...
Any ideas?
Andy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]