I am trying to download tomcat zip artifact and unpack it int a folder named tomcat. What i get is tomcat/apache-tomcat-7.0.19/ How can I get rid of the annoying intermediate directory?

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
    <execution>
        <id>unpack-tomcat</id>
        <phase>process-sources</phase>
        <goals>
            <goal>unpack</goal>
        </goals>
        <configuration>
            <artifactItems>
                <artifactItem>
                    <groupId>org.apache</groupId>
                    <artifactId>tomcat</artifactId>
                    <version>7.0.19-win64</version>
                    <type>zip</type>
                    <overWrite>false</overWrite>
                    <outputDirectory>tomcat</outputDirectory>
                    <excludes>webapps/**</excludes>
                </artifactItem>
            </artifactItems>                            
        </configuration>
    </execution>
</executions>
</plugin>
link|improve this question

29% accept rate
feedback

2 Answers

Use unpack-depencencies goal and set useSubDirectoryPerArtifact to false.

link|improve this answer
I dont manage it to work. Now it just brings me all dependencies I got and doesnt filter only tomcat. – archmisha Jan 19 at 19:44
Under the configuration section of your plugin declaration in your pom add <includeArtifactIds>tomcat<includeArtifactIds> – BenjaminLinus Jan 19 at 20:46
I would appreciate an up vote or accept my answer if it helped. Thx. – BenjaminLinus Jan 25 at 5:19
I posted the entire pom plugin code. It still doesnt work for me. Just create nested dir – archmisha Jan 25 at 13:43
feedback

It still creates for me a nested directory of tomcat/apache-tomcat-7.0.19/

         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>                
            <executions>
                <execution>
                    <id>unpack-tomcat</id>
                    <phase>package</phase>
                    <goals>
                        <goal>unpack-dependencies</goal>
                    </goals>
                    <configuration>
                        <useSubDirectoryPerArtifact>false</useSubDirectoryPerArtifact>
                        <includeArtifactIds>tomcat</includeArtifactIds> 
                        <artifactItems>
                            <artifactItem>
                                <groupId>org.apache</groupId>
                                <artifactId>tomcat</artifactId>
                                <version>${tomcat.version}-win64</version>
                                <type>zip</type>
                                <overWrite>false</overWrite>
                                <outputDirectory>target/tomcat</outputDirectory>
                                <useSubDirectoryPerArtifact>false</useSubDirectoryPerArtifact>
                            </artifactItem>
                        </artifactItems>                            
                        <outputDirectory>target/tomcat</outputDirectory>                                    
                    </configuration>
                </execution>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.