idea maven 添加jar包
集成 海康威视 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