mvn help:system Build Failure 解决方法

重做系统后发现,maven不能正常导入jar包,并且使用mvn help:system命令
报错 Build Failure
大致报错如下
[WARNING] Failed to retrieve plugin descriptor for org.apache.maven.plugins:maven-clean-plugin:2.5: Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-clean-plugin:jar:2.5
Downloading: http://maven.aliyun.com/nexus/content/groups/public/org/apache/maven/plugins/maven-install-plugin/2.4/maven-install-plugin-2.4.pom

尝试换成阿里的镜像仓库,但是发现还是不能解决


  alimaven
  aliyun maven
  http://maven.aliyun.com/nexus/content/groups/public/
  central        

然后我在想会不会是我网络的原因,尝试把电脑的防火墙关了,然后再在idea中尝试使用clean命令,发现还是不行。。。。

最后万般无奈的时候,使用的命令:mvn help:describe -Dplugin=help -e -X
然后再重新build项目的时候成功了! 有些莫名其妙的感觉。。。。。

这次解决这个问题有些奇怪,以此记录一下,下次再遇到作为参考

你可能感兴趣的:(maven工具,maven)