IDEA下载maven依赖报错:Could not transfer artifact org.springframework.boot:spring-boot-maven-plugin(证书失效)

  • 【版权所有,文章允许转载,但须以链接方式注明源地址,否则追究法律责任】

报这个错的原因是证书校验有问题,解决方法如下:

File–>settings–>Build–>Build Tools–>Maven–>Runner
将VM Option换上下边的参数:这样设置可以跳过证书检查,然后maven clean,compile,再install就可以解决这个问题了
两种方式
第一种:

-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true

IDEA下载maven依赖报错:Could not transfer artifact org.springframework.boot:spring-boot-maven-plugin(证书失效)_第1张图片
第二种:忽略证书检查

-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

IDEA下载maven依赖报错:Could not transfer artifact org.springframework.boot:spring-boot-maven-plugin(证书失效)_第2张图片

如果帮助到你,顶一下

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