1 创建一个工程,我的工程cn.fanyu.common
2 用deploy命令,将工程deploy到指定仓库中
我的仓库位置 /soft/maven/github/repository
node1:common huangdongjin$ mvn deploy -DaltDeploymentRepository=repository::default::file:/soft/maven/github/repository
3 同步代码到远程仓库
我的仓库地址 git@github.com:TridentHuang/repository.git
4 引入,在新工程中的pom.xml文件中,添加仓库地址
<repositories>
<repository>
<id>repository</id>
<url>https://raw.github.com/TridentHuang/repository/master</url>
</repository>
</repositories>
//其中<id>repository</id>是第二步,default前面的内容
来源:CSDN
作者:weixin_39154610
链接:https://blog.csdn.net/weixin_39154610/article/details/104356470