Hi,

I have an assembly descriptor with the following:

<assembly>
  ..
      <dependencySets>
        <dependencySet>
            <unpack>true</unpack>
            <scope>provided</scope>
            <includes>
                <include>foo:bar:zip</include>
            </includes>
            <unpackOptions>
                <excludes>
                    <exclude>webapps/root/**/*.*</exclude>
                </excludes>
            </unpackOptions>
        </dependencySet>
..
</assembly>

The zip file that I want to unpack into the assembly contains a
'webapps/root' directory and this directory has some subdirectories. I don't
want to unpack this directory. With the pattern I have used, none of the
files are there (good), but the subdirectories are still there (not good).

How can I avoid that the subdirectories are still in the assembly?

regards,

Wim

Reply via email to