What I tried to do is, to filter dependencies and unpack some of them, simply
copy others to
some dirs, like:
1. two dependencies with type zip
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<unpack>true</unpack>
<scope>runtime</scope>
<includes>
<include>*.zip</include>
</includes>
</dependencySet>
2. a jar
<dependencySet>
<outputDirectory>/</outputDirectory>
<unpack>false</unpack>
<scope>runtime</scope>
<includes>
<include>mymodule*.jar</include>
</includes>
</dependencySet>
3. another jar
<dependencySet>
<outputDirectory>/</outputDirectory>
<unpack>true</unpack>
<scope>runtime</scope>
<includes>
<include>server*.jar</include>
</includes>
</dependencySet>
If I change something in the dependencySets-Element, all dependencies will be
ignored.
What am I missing here?
regards, carsten