Maven-dependencyプラグインを介してZipファイルを解凍できますが、現在、そのZipファイル内に他のZipファイルが含まれており、それらも解凍する必要があるという問題があります。これどうやってするの?
Antタスクランナープラグインを使用してファイルを解凍できます。
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>prepare</id>
<phase>validate</phase>
<configuration>
<tasks>
<echo message="prepare phase" />
<unzip src="zips/archive.Zip" dest="output/" />
<unzip src="output/inner.Zip" dest="output/" />
<unzip dest="output">
<fileset dir="archives">
<include name="prefix*.Zip" />
</fileset>
</unzip>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
ANTの使用はもうクールではありません;)
http://maven.Apache.org/plugins/maven-dependency-plugin/examples/unpacking-artifacts.html
Zip(archive.Zip)ファイルを解凍するためのサンプルコード:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>foo</groupId>
<artifactId>archive</artifactId>
<version>1.0-SNAPSHOT</version>
<type>Zip</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
ファイルarchive.Zipは最初にmavenリポジトリーにインストールする必要があります。たとえば、タスク 案件の添付org.codehaus.mojo:build-helper-maven-plugin:build-helper:attach-artifact
TrueZIP Mavenプラグイン もうまく機能します。サンプル構成:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>truezip-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>copy-package</id>
<goals>
<goal>copy</goal>
</goals>
<phase>package</phase>
<configuration>
<verbose>true</verbose>
<fileset>
<directory>outer.Zip</directory>
<outputDirectory>${project.build.directory}/outer</outputDirectory>
</fileset>
<fileset>
<directory>${project.build.directory}/outer/inner.Zip</directory>
<outputDirectory>${project.build.directory}/inner</outputDirectory>
</fileset>
</configuration>
</execution>
</executions>
</plugin>
プラグインの依存関係を使用することもできます。依存関係をアンパックする目標があります( http://maven.Apache.org/plugins/maven-dependency-plugin/unpack-dependencies-mojo.html を参照)