建maven私服nexus

1、下载nexus

2、配置java环境

3、安装

C:Program Files exus exus-2.11.4-01injswwindows-x86-64

4、配置

http://localhost:8081/nexus

admin

admin123

5、setting.xml配置

 <mirrors>
            <mirror>
                <id>central</id>
                <mirrorOf>*</mirrorOf> <!-- * 表示让所有仓库使用该镜像--> 
                <name>central-mirror</name> 
                <url>http://localhost:8081/nexus/content/groups/public/</url>
            </mirror> 
    </mirrors>
原文地址:https://www.cnblogs.com/sprinng/p/5085391.html