使用NEXUS 上传 SNAPSHOT版本的jar包到服务器上,但是下载不下来,报错提示:Dependency ... not found
后来百度到一句话:
Maven内置的插件远程仓库配置,关闭了对SNAPSHOT的支持,防止不稳定的构建所以解决办法最关键的是:在maven 的conf 目录下的setting.xml 文件中,添加 对SNAPSHOT的支持
<snapshots> <enabled>true</enabled></snapshots>
central-repo central Central-repo http://******/central true true central-repo
如果下载RELEASE版的包 和SNAPSHOT 版的包 在不同的地址,可以这么设置
true false releases release http://***********/maven-releases/ false true snapshots libs-snapshot http://***************/maven-snapshots/ artifactory
原创文章,欢迎转载,转载请注明出处!