<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.yourdomain</groupId>
<artifactId>projectmodul</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>zip</type>
<excludes>web.xml</excludes>
<outputDirectory>${project.basedir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
maven unpack
最新推荐文章于 2024-05-20 16:40:14 发布