赞
踩
在IDEA中使用Maven构建项目时,发现架包无法自动import,然后提示为:
dependency.artifactId: *** not found
但是在中央仓库中可以发现该架包是存在的。此时使用mvn clean install
后弹出错误日志:
Could not transfer artifact org.springframework.boot:spring-boot-starter-activemq:pom:2.2.4.RELEASE from/to central (https://maven.aliyun.com/nexus/content/groups/public): PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
根据该日志可在网络上查询出错误原因:主要是ssl证书验证失败,所以可以在maven中取消掉ssl验证。具体操作如下:
在Maven
-> Runner
-> VM Options
中添加:
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。