本文主要是介绍配置了maven阿里云源,却还是自动用中央仓库下载依赖解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在pom.xml文件中加上下面的代码
<repositories><repository><id>nexus-aliyun</id><name>nexus-aliyun</name><url>http://maven.aliyun.com/nexus/content/groups/public/</url><releases><enabled>true</enabled></releases><snapshots><enabled>false</enabled></snapshots></repository>
</repositories>
这篇关于配置了maven阿里云源,却还是自动用中央仓库下载依赖解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!