我有下一个目录结构:
src/main/resources/export/v1/android/ src/main/resources/export/v1/ios/ src/main/resources/export/v2/android/ src/main/resources/export/v2/ios/ ... src/main/resources/export/vn/android/ src/main/resources/export/vn/ios/
我需要获得下一个结果:
WEB-INF/export/v1/android.zip WEB-INF/export/v1/ios.zip WEB-INF/export/v2/android.zip WEB-INF/export/v2/ios.zip ... WEB-INF/export/vn/android.zip WEB-INF/export/vn/ios.zip
我可以使用maven-assembly-plugin解决问题吗?如果没有,是否有另一个插件可以应付它或者更好地编写自定义类并使用exec-maven-plugin调用它?
答案 0 :(得分:0)
这是我通过修改插件而弄清楚的。我已经能够创建一个带有一些任意文件的zip。这是我定义的插件:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptors>
<descriptor>src/main/resources/my-assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>assembly-id</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
继承人my-assembly.xml:
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip-example</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>src/main/java/com/sandbox</directory>
</fileSet>
</fileSets>
</assembly>
我希望有一种更简单的方法可以满足您的需求,但从这一点开始,您可以为需要构建的每个zip创建一个程序集文件,这对您有用。
答案 1 :(得分:0)
我最终编写了java类并使用 exec-maven-plugin 运行它,如下所示:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>Running custom java class</id>
<phase>compile</phase>
<goals><goal>java</goal></goals>
<inherited>false</inherited>
<configuration>
<mainClass>mycompany.CustomJavaClass</mainClass>
<classpathScope>compile</classpathScope>
<arguments>
<argument>
${project.basedir}/src/main/resources/export
</argument>
<argument>
${project.basedir}/target/art-1.0/WEB-INF/export
</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>