在pom文件中配置私有仓库:
<!--配置maven项目的远程仓库-->
<repositories>
<repository>
<id>nexus</id>
<name>nexus</name>
<url>http://repo.nexus.net/repository/maven-releases/</url>
</repository>
</repositories>
但是下载依赖还是从maven中央仓库下载,导致依赖下载不下来,这是因为Maven配置阿里云仓库是代理了所有的依赖: setting.xml代码:
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
把setting.xml中的
<mirrorOf>central</mirrorOf>
回复