您好,登錄后才能下訂單哦!
一. 前言
在編譯完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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。