日常中大家应该使用过maven-assembly-plugin 进行软件打包,maven-assembly-plugi 内部已经提供了几个开箱即用的descriptorRef,
主要是: bin,jar-with-dependencies,project,src 实际处理可以参考插件源码,我们一般都是自己编写assembly 文件,如果为了项目的统一
性以及灵活行可以开发自己的descriptorRef,比如dremio 为了方便处理就自己开发了一个
原理
descriptorRef 开发实际上还是比较简单的,核心就是定义好assembly 文件,然后按照descriptorRef的格式打包好,之后在使用插件的时候
添加依赖就可以了
参考格式,如下图
自定义模式
实际上就是参考上边的写文件就行了,如下
server-tarball.xml
<?xml version="1.0"?>
<assembly xmlns="https://maven.apache.org/ASSEMBLY/2.1.1"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/xsd/assembly-2.1.1.xsd https://maven.apache.org/xsd/assembly-component-2.1.1.xsd">
<id>binary-relase</id>
<formats>
<format>tar.gz</format>
<format>dir</format>
<format>jar</format>
<format>war</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<componentDescriptors>
<componentDescriptor>
/core-component.xml</componentDescriptor>
</componentDescriptors>
</assembly>
core-component.xml
<?xml version="1.0"?>
<component>
<dependencySets>
<dependencySet>
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>jar</outputDirectory>
<includes>
<include>com.alibaba.*:*:jar</include>
<include>com.dalong:*:jar</include>
</includes>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
</component>
项目集成使用
主要是maven-assembly-plugin 插件添加依赖
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>server-tarball</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<finalName>${my.distribution.name}-${project.version}</finalName>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.dalong</groupId>
<artifactId>resources</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
备注: 完整代码参考链接的github
说明
spring boot maven plugin 做的特别好,提供了开箱即用的能力但是很多时候一些小项目我们使用的可能就不是spring boot 了,可能是其他轻量级框架了,同时
基于以上自定义扩展进行软件打包还是比较重要的
参考资料
https://maven.apache.org/plugins/maven-assembly-plugin/assembly.html
https://github.com/apache/maven-assembly-plugin
https://github.com/rongfengliang/flatten-maven-plugin-maven-assembly-plugin-learning