EARアーカイブを解凍し、Mavenを使用してローカルディレクトリにコピーする必要があります。これを行うためのMavenプラグインはありますか?mavenアップロードプラグインを使用してファイルをコピーしましたが、解凍できません。助けてください...
2 に答える
<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>
Maven ear プラグインを試しましたか?
http://maven.apache.org/plugins/maven-ear-plugin/
これにより、耳のコンテンツがターゲットディレクトリに展開されると思います。例を見てください
または、maven 依存関係プラグインも役立ちます。
http://maven.apache.org/plugins/maven-dependency-plugin/usage.html