Hi,
I have a maven standard directory layout:
src/main/resources
and different directories there:
src/main/resources/conf
src/main/resources/images
How can I exlcude the conf directory from the jar?
MJAR-30 says that there is no exclude for the jar plugin
but one could exclude resources.
So I tried
<build>
...
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>conf</exclude>
</excludes>
</resource>
</resources>
</build>
in my pom but this did not help.
What is wrong here? thanks for you help!
Bernd
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]