项目用到一些不是公用的依赖,需要上传到自己的私服中,方便使用
在jar所在目录通过黑窗口上传到私服
mvn deploy:deploy-file -Dfile=C:\Users\if\common-1.0.0-SNAPSHOT.jar -DgroupId=com.pitaya -DartifactId=common -Dversion=1.0.2 -Dpackaging=jar -Durl=http:/0.0.0:80/repository/micrepo/ -DrepositoryId=xxid
参数说明:
-Dfile jar包路径
-DgroupId pom依赖对应的groupId
-DartifactId pom依赖对应的artifactId
-Dpackaging jar包形式
-Durl 上传私服仓库地址
-DrepositoryId 私服对应的仓库id
然后到私服仓库查看
项目需要这些jar包就配置私服地址即可
<repository>
<id>xxit</id>
<url>http://0.0.0:80/repository/micrepo/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>