配置仓库组后,下载报错:
1 required artifact is missing.
for artifact:
org.apache.maven.plugins:maven-resources-plugin:maven-plugin:2.4.1
from the specified remote repositories:
Nexus (http://172.16.60.71:8181/nexus/content/groups/public , releases=true, snapshots=false)
原因:主要原因是配置nexus里面的 Public Repositories 顺序和条件出错,导致不能下载构件。
解决方法:下边这个图中是正确的配置顺序
讲解:左边(Ordered Group Repositories)的是正在使用的定义好的仓库组,右边(Available Repositories)是可选的。下载构件的顺序是先在本地releases找,如果没有再在snapshots里找,再3rd party,最后是本地机子都没有构件就到远程(外网)提供的网站下载构件。以此类推