>From the following spec, I get two behaviors that I need to fix
somehow: (1) I get an extra level of directory named after the
artifact in spite of the empty outputDirectory element. (2) the
excludes are apparently completely ignored. Can anyone assist?
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-wrapper</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/wrapper</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>tanuki</groupId>
<artifactId>wrapper-delta-pack-standard</artifactId>
<version>3.5.6</version>
<type>tar.gz</type>
<outputDirectory/>
<excludes>**/bin/DemoApp.bat,**/bin/GetHostId.bat,**/bin/*Test*,**/bin/demoapp/bin/testwrapper,conf/*,**/jdoc,**/jdoc.tar.gz,**/lib/wrapperdemo.jar,**/lib/wrappertest.jar,**/src/conf</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]