maven 配置中央仓库地址

xiaoxiao2021-02-28  91

Maven 中央仓库地址:     1. http://www.sonatype.org/nexus/

    2. http://mvnrepository.com/ (本人推荐仓库)   

    3. http://repo1.maven.org/maven2

在mave setting.xml文件中配置如下:

<mirrors>     <mirror>       <id>mirrorId</id>       <mirrorOf>repositoryId</mirrorOf>       <name>Human Readable Name for this Mirror.</name>       <url>http://mvnrepository.com/</url>     </mirror>   </mirrors>

转载请注明原文地址: https://www.6miu.com/read-50261.html

最新回复(0)