创建Maven项目Cannot resolve plugin org.apache.maven.plugins:maven-clean-plugin:2.5解决办法

版权声明:本文为CSDN博主「小矮子tt」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_38287890/article/details/101628637

该问题由于网络问题导致不能下载插件,配置镜像即可解决。

配置settings.xml文件中的镜像:


	 
		mirrorId
		central
		Human Readable Name 
		http://repo1.maven.org/maven2/
	
	
	 
		alimaven 
		aliyun maven 
		http://central.maven.org/maven2 
		central 
	
	
	 
		alimaven 
		aliyun maven 
		http://maven.aliyun.com/nexus/content/repositories/central/ 
		central 
	
	
	 
		junit 
		junit Address/ 
		http://jcenter.bintray.com/ 
		central 
	
  

 

你可能感兴趣的:(解决问题)