在Maven的settings.xml,可以设置Maven的私有仓库的地址,还可以设置所下载jar包在自己电脑的保存地址(默认不设置保存在个人文件夹的.m2文件夹下).
1.设置私有仓库地址:
<mirror>
<id>central</id>
<name>nexus_local_central</name>
<mirrorOf>central</mirrorOf>
<url>http://IP:8081/nexus/content/groups/public</url>
2.设置jar包的保存路径:
<localRepository>D:\maven\repository</localRepository>