原因 :
主要是maven不能根据阿里云下载e-iceblue:spire.xls.free:pom:5.1.0。
报错信息:
Could not find artifact e-iceblue:spire.xls.free:pom:5.1.0 in nexus-tencenty
正确解决方式:
1.找到自己maven的安装路径中的conf文件夹下的settings.xml配置文件。
/usr/local/Maven/conf/settings.xml
修改前请先备份settings.xml
cd /usr/local/Maven/conf/
cp settings.xml settings.xml0705
2.打开setting.xml文件,修改阿里云公共仓库
vim settings.xml
修改前
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
修改后
<mirror>
<id>nexus-aliyun</id>
<!-- *是不能下载com.e-iceblue的依赖的,需要加入!com.e-iceblue -->
<mirrorOf>*,!com.e-iceblue</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
注意:千万千万要注意标点符号字母不要搞错了。
转发自:https://blog.csdn.net/WANAN0808/article/details/131585079
网友评论