一. 前言
在编译完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
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。