首页 > 其他分享 >idea maven 添加jar包

idea maven 添加jar包

时间:2023-03-25 15:24:10浏览次数:41  
标签:http 1.1 jar idea artemis maven client

集成 海康威视 artemis-http-client-1.1.8.jar 打包时报错,发现是maven中心仓库没有1.1.8版本。

 

 

于是自己添加:

参考链接:https://www.cnblogs.com/scode2/p/16965288.html

1、在pom.xml统计目录下添加lib文件夹,放入jar包;

2、pom中引用

<dependency>
            <groupId>com.hikvision.ga</groupId>
            <artifactId>artemis-http-client</artifactId>
            <version>1.1.8</version>
            <scope>system</scope>
            <systemPath>${basedir}/lib/artemis-http-client-1.1.8.jar</systemPath>
        </dependency>

 3、maven reimport

标签:http,1.1,jar,idea,artemis,maven,client
From: https://www.cnblogs.com/webttt/p/17254763.html

相关文章