美文网首页
[ERROR] Plugin org.apache.maven.

[ERROR] Plugin org.apache.maven.

作者: Trade丿Life | 来源:发表于2020-04-05 15:58 被阅读0次

    bug描述

    [ERROR] Plugin org.apache.maven.plugins:maven-archetype-plugin:RELEASE or one of its dependencies could not be resolved问题

    解决方法

    • 阿里云的maven镜像仓库改为了https
    <mirror>
          <id>aliyunmaven</id>
          <mirrorOf>*</mirrorOf>
          <name>aliyun maven</name>
          <url>https://maven.aliyun.com/repository/public</url>
        </mirror>
    
    • IDEA的setting是当前项目配置,要使用全局默认配置(setting for new projects)(坑爹)
    image.png
    image.png
    • 在setting for project中把maven的runner中的VM options添加如下语法(忽略证书问题)
    -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true
    
    
    • 保险起见导入这里也忽略加上证书
      以上是我参考一位博主的文章原文

    相关文章

      网友评论

          本文标题:[ERROR] Plugin org.apache.maven.

          本文链接:https://www.haomeiwen.com/subject/lxbuphtx.html