Pom.xml - tar 任务
是否可以向 pom.xml 文件添加一个任务来创建 tar.gz / .zip 文件。
例如:
<tar type="tar.gz" source="resources/sql" tofile="target/sql.tar.gz"/>
谢谢
Is it possible to add a task to the pom.xml file that will create a tar.gz / .zip file.
for eample:
<tar type="tar.gz" source="resources/sql" tofile="target/sql.tar.gz"/>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
maven-assemble-plugin
创建 src/main/assemble/bin.xml,详细信息请参阅 http://maven.apache.org/plugin-developers/cookbook/generate- assembly.html 和 http://maven.apache.org/plugins/maven- assembly-plugin/descriptor-refs.html# bin
将您的资源 sql 文件放入
includes
中,并将output
的格式指定为 tar.gz接下来,在您的 pom.xml 中放置对此插件的引用
http://maven.apache.org/plugins/maven- assembly- plugin/usage.html
最后,使用以下方式调用它
Use the
maven-assembly-plugin
Create a src/main/assembly/bin.xml as detailed at http://maven.apache.org/plugin-developers/cookbook/generate-assembly.html and http://maven.apache.org/plugins/maven-assembly-plugin/descriptor-refs.html#bin
Put your resources sql files in the
includes
and give the format ofoutput
as tar.gzNext, in your pom.xml put the reference to this plugin
http://maven.apache.org/plugins/maven-assembly-plugin/usage.html
Last, call this using