maven安装自定义jar包
我的应用:
把要按照的jar包,放在某个目录,cmd进入这个jar包所在目录,
然后输入:
mvn install:install-file -Dfile=artemis-http-client-1.2-SNAPSHOT.jar -DgroupId=com.hik.artemis -DartifactId=artemis -Dversion=1.2 -Dpackaging=jar
按照成,可以在pom.xml中引用:
<!--添加外部依赖 -->
<dependency>
<groupId>com.hik.artemis</groupId>
<artifactId>artemis</artifactId>
<version>1.2</version>
</dependency>
这样,就可以编译、打包。
操作过程,操作过程如链接:https://www.cnblogs.com/fdzfd/p/7859376.html