DevOps进阶(八)maven三种打包插件
【摘要】 maven三种打包插件
maven有多种可以打包的插件,如下:
pluginfunction官网maven-jar-pluginmaven 默认打包插件,用来创建 project jarmaven-shade-plugin用来打可执行包,executable(fat) jarhttp://maven.apache.org/plugins/maven-shade-pl...
maven三种打包插件
maven有多种可以打包的插件,如下:
plugin | function | 官网 |
---|---|---|
maven-jar-plugin | maven 默认打包插件,用来创建 project jar | |
maven-shade-plugin | 用来打可执行包,executable(fat) jar | http://maven.apache.org/plugins/maven-shade-plugin/examples/includes-excludes.html |
maven-assembly-plugin | 支持定制化打包方式,例如 apache 项目的打包方式 | http://maven.apache.org/plugins/maven-assembly-plugin/usage.html |
我们主要是要打zip包,也就是要使用maven-assembly-plugin插件。
maven-assembly-plugin pom配置
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <configuration> <descriptors> <descriptor>src/main/package.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <!--this is used for inheritance merges 绑定到这个生命周期--> <goals> <goal>single</goal> <!--执行一次--> </goals> </execution> </executions>
</plugin>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
指定打包文件 src/main/package.xml,在该配置文件内指定打包操作。
配置文件
<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.0.0.xsd"> <id>full</id> <!--这个id会出现在zip包名称的后面,zip的完整名是:pom.xml中的artifactId-version-id.zip --> <formats> <!--支持的打包格式有zip、tar、tar.gz (or tgz)、tar.bz2 (or tbz2)、jar、dir、war--> <format>zip</format> </formats> <dependencySets> <!-- 用来定制工程依赖 jar 包的打包方式,依赖包的输出路径 --> <dependencySet> <outputDirectory>/libs</outputDirectory> <!--依赖jar包的输出目录--> <useProjectArtifact>false</useProjectArtifact> <includes> <!--指定把哪些依赖包放进去 --> <!--如果不指定 则所有的依赖都会打入,但是有的时候 我们只需要打特定依赖的包--> <include>net.sf.jsi:jsi</include> <include>net.sf.trove4j:trove4j</include> </includes> </dependencySet> </dependencySets> <includeBaseDirectory>true</includeBaseDirectory> <fileSets><!--这里指定需要包含的其他文件--> <fileSet> <!--管理一组文件的存放位置--> <outputDirectory>/</outputDirectory> <!--放在哪--> <directory>target</directory><!--源目录--> <includes> <include>*.jar</include> <!--代码的jar包--> </includes> </fileSet> <fileSet> <outputDirectory>/shell</outputDirectory> <directory>src/main/resources/shell</directory> <includes> <include>*/*.sh</include> <!--把shell脚本打进去--> <include>*/*.conf</include> <!--把conf文件打进去--> </includes> </fileSet> </fileSets>
</assembly>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
这个xml的配置属性及其说明参见:http://gitlab.tenddata.com/data-process/gp-etl/blob/spark2.3test/src/main/package.xml
文章来源: shq5785.blog.csdn.net,作者:No Silver Bullet,版权归原作者所有,如需转载,请联系作者。
原文链接:shq5785.blog.csdn.net/article/details/84819635
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)