我想创建一个基于 maven 的工具,当我向 pom.xml 添加依赖项时,我想自动从下载的 jar 文件中提取一些文件并将它们复制到另一个文件夹。是否可以扩展 Maven 依赖插件?任何建议表示赞赏。
问问题
2179 次
1 回答
1
您可以使用Maven 依赖插件和下面添加的简单示例创建包含所有依赖项的文件夹
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<!-- configure the plugin here -->
</configuration>
</execution>
</executions>
</plugin>
您可以使用以下插件将 jar 文件复制到所需文件夹
http://evgeny-goldin.com/wiki/Copy-maven-plugin
这是一个简单的示例,可用于将文件从目标中的依赖文件夹复制到另一个文件夹
<plugin>
<!-- download from here
http://evgeny-goldin.org/artifactory/repo/com/goldin/plugins/maven-copy-plugin/0.2.3.8-beta-9/
-->
<groupId>com.goldin.plugins</groupId>
<artifactId>maven-copy-plugin</artifactId>
<version>0.2.3.8-beta-9</version>
<executions>
<execution>
<id>create-archive</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<resources>
<!-- ~~~~~~~~~~~~~~ -->
<!-- Copy resources -->
<!-- ~~~~~~~~~~~~~~ -->
<resource>
<targetPath>c:/YOUR_NEW_FOLDER/</targetPath>
<directory>${project.basedir}/target/dependency/</directory>
<includes>
<include>*.jar</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
于 2012-07-02T06:21:21.220 回答