0

使用 maven,是否可以创建我的 maven 项目的 zip 文件?zip 文件还应包含 pom.xml 文件和所有其他文件。zip 文件是 maven 项目的存档。基本上,我只是希望我的用户在解压缩 zip 文件后轻松将项目导入 Eclipse。

如何使用 Maven 实现这一目标?

谢谢!

4

2 回答 2

4

您可以使用 Pradeep 建议的 maven-assembly-plugin 来完成此操作。

并且还使用 maven-antrun-plugin。查看pom和 zip 任务。在文件集中包含您想要的文件。

于 2013-01-30T05:51:45.547 回答
1

你可以使用antrun插件

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.7</version>
            <configuration>
                <target>
                    <zip destfile="d:/projectname.zip" basedir="${project.basedir}" excludes="target/**" />
                </target>
            </configuration>
        </plugin>

从 Eclipse 运行它Run As -> Maven build... -> Goals: antrun:run

于 2013-01-30T06:18:22.907 回答