如何使用 Maven 程序集创建 zip 的 zip 并安装包含其他 zip 的 zip?
例如,我需要创建 A.zip、B.zip、C.zip,最后要安装一些 D.zip(包含 A、B 和 C)。
当我有以下内容时,会发生什么是 Maven 创建了所有 A、B、C 和 D zip 文件,但它随机安装了一个 zip(从某种意义上说它安装了 B.zip 而我想要 D.zip 到安装)。
任何建议如何解决这个问题?
<executions>
<execution>
<id>A</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<id>B</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<id>C</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
<execution>
<id>D</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>