Error: Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not

当运行 mvn clean, mvn install, mvn help:system时,会出现以下waring和error时,是因为当前使用的本地中的plugin不可用。可能是第一次下载没下载成功,没下载完全导致的。所以解决办法就是先删除本地下载失败的插件,然后重新build。

解决办法:删除本地的相应目录下的plugins,从我的错误中可以看出,我的plugin不可用所指的目录是org.apache.maven.plugins。所以本人先删除本地仓库中此目录下的所有文件,然后重新build一次即可。

解决方法
删除自己修改的仓库的的插件目录下的所有文件,重新build
如:C:\Software\maven\repo\org\apache\maven\plugins
删除此目录下的所有文件,
Error: Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not_第1张图片然后重新build,如:mvn clean 再 mvn install
Error: Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not_第2张图片
注意:要配置maven的镜像

	
  
			nexus-aliyun  
			central    
			Nexus aliyun  
			https://maven.aliyun.com/repository/public  
		 
	
	
        
            repo1
            central
            Human Readable Name for this Mirror.
            http://repo1.maven.org/maven2/
        
    
        
        
            repo2
            central
            Human Readable Name for this Mirror.
            http://repo2.maven.org/maven2/
        

你可能感兴趣的:(Docker)