我的settings.xml一般这样设置:
<? xml version="1.0" encoding="UTF-8"?> < settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> < localRepository >X:工具maven资源
epository</ localRepository > < pluginGroups ></ pluginGroups > < proxies ></ proxies > < servers ></ servers > < mirrors > < mirror > < id >nexus-aliyun</ id > < name >Nexus aliyun</ name > < mirrorOf >central</ mirrorOf > < url >http://maven.aliyun.com/nexus/content/groups/public</ url > </ mirror > < mirror > < id >nexus-mine</ id > < name >Nexus mine</ name > < mirrorOf >*</ mirrorOf > < url >http://xx.xx.xx.xx/nexus/content/groups/public</ url > </ mirror > </ mirrors > < profiles ></ profiles > </ settings > |
nexus-aliyun使用阿里云的镜像作为central中央仓库
nexus-mine作为私服,mirrorOf配置为*来提供中央仓库中不存在的jar包
https://www.cnblogs.com/ctxsdhy/p/8482725.html