mavenをベースにツールを作成したいのですが、pom.xmlに依存関係を追加すると、ダウンロードしたjarファイルからいくつかのファイルを自動抽出して別のフォルダにコピーしたいです。Maven依存プラグインを拡張することは可能ですか? アドバイスをいただければ幸いです。
質問する
2179 次
1 に答える
1
Maven Dependency Pluginと以下に追加された簡単なサンプルを使用して、すべての依存関係を含むフォルダーを作成できます。
<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ファイルをdesiredフォルダーにコピーできます
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 に答える