解决方法:
在settings.xml文件加入镜像
<!-- 阿里云镜像 -->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<!-- junit镜像地址 -->
<mirror>
<id>junit</id>
<name>junit Address/</name>
<url>http://jcenter.bintray.com/</url>
<mirrorOf>central</mirrorOf>
</mirror>
确保如下设置正确
如果还出现同样的错误:
在File → setting下的 Maven → Importing ,如下图,加一句话
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true
该配置用于忽略ssl证书的验证
记得先把仓库里面之前缓存的文件全部清除,然后右键项目,Maven→Reimport 重新下载
问题完美解决
IDEA配置Maven报错Could not transfer artifact org.apache.maven.plugins*