温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

33.Apollo引入第三方Jar包编译

发布时间:2020-06-22 06:30:36 来源:网络 阅读:958 作者:rongwei84n 栏目:软件技术

一. 前言

在编译完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

向AI问一下细节

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

AI