hey guys
I'm trying to exclude a context.xml from a webapp. I have the following
snippet in my build element:
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/application.jmx.properties</exclude>
<exclude>**/log4j.properties</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/java/webapp/META-INF</directory>
<excludes>
<exclude>**/context.xml</exclude>
</excludes>
</resource>
</resources>
my directory structure over context.xml looks like this:
src/main/java/webapp/META-INF/context.xml
context.xml is still not being excluded, but application.jmx.properties
and log4j.properties are, anyone know what gives?
Thanks
Alessandro Ferrucci
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]