maven 插件更新bug

问题和现象描述如下网址所述

如果插件的snapshot库能被公共访问的话,在使用该插件的时候maven2会自动检查最新版本,并忽略repository配置中的<snapshots>false</snapshots>选项。但是在下载该snapshot版本时候却又受<snapshots>选项控制而导致不能下载下来,如执行mvn help -Dplugin=archetype就会抛错:Reason: Error getting POM for 'org.apache.maven.plugins:maven-help-plugin' from the repository: Failed to resolve artifact, possibly due to a repository list that is not appropriately equipped for this artifact's metadata.
  org.apache.maven.plugins:maven-help-plugin:pom:2.2-SNAPSHOT


解决方案是:

1.把<snapshots>置为true,让maven将错就错把snapshot下下来,使用最新的snapshot版本的插件

2.修改本地仓库插件包的meta信息latest节为低版本非snapshot版本


问题已在sonatype收录:
https://issues.sonatype.org/browse/NEXUS-4251


参考

http://dikar.iteye.com/blog/1123199

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