0

EARアーカイブを解凍し、Mavenを使用してローカルディレクトリにコピーする必要があります。これを行うためのMavenプラグインはありますか?mavenアップロードプラグインを使用してファイルをコピーしましたが、解凍できません。助けてください...

4

2 に答える 2

0

<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>unpack</id> <phase>clean</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>A</groupId> <artifactId>ear</artifactId> <version>version</version> <type>ear</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/ear</outputDirectory> <excludes>**/*.jar</excludes>
</artifactItem> </artifactItems> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin>

于 2014-08-28T08:00:51.953 に答える
0

Maven ear プラグインを試しましたか?

http://maven.apache.org/plugins/maven-ear-plugin/

これにより、耳のコンテンツがターゲットディレクトリに展開されると思います。例を見てください

または、maven 依存関係プラグインも役立ちます。

http://maven.apache.org/plugins/maven-dependency-plugin/usage.html

于 2012-09-14T04:40:45.330 に答える