一. 前言
在编译完Apollo源代码后,我们可能会自己修改Apollo源代码,添加自己的功能,然后编译出来。
修改代码有个时候会用到第三方Jar包,那么怎么打包到Apollo里面去呢?
二. 修改pom.xml
在项目的pom.xml中添加包引入,以fastjson为例
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.31</version>
<scope>compile</scope>
</dependency>
三. 修改打包文件
位置
源代码根目录/apollo/apollo-distro/src/main/descriptors/common-bin.xml
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<unpack>false</unpack>
<useTransitiveDependencies>true</useTransitiveDependencies>
<includes>
<include>org.apache.activemq:apollo-*</include>
<!-- main apollo dependencies -->
<include>org.scala-lang:scala-library</include>
<!-- customer add begin -->
<include>com.alibaba:fastjson</include>
...
...
四. 重新编译打包
http://483181.blog.51cto.com/473181/1950769