IntelliJ IDEA 用 Maven 下载依赖超时报错

关键词:

  • IntelliJ IDEA
  • Maven 依赖下载超时报错

前言

在新环境用 Maven 时,踩坑各种 Maven 报错、超时。

Maven 配置阿里源

  • 将以下内容写到 ~/.m2/settings.xml (注意先备份原来存在的 settings.xml):

<settings
    xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <mirrors>
        <mirror>
          <id>aliyunmavenid>
          <mirrorOf>centralmirrorOf>
          <name>阿里云公共仓库name>
          <url>https://maven.aliyun.com/repository/publicurl>
        mirror>
    mirrors>
    <profiles>
        <profile>
            <repositories>
                <repository>
                    <id>springid>
                    <url>https://maven.aliyun.com/repository/springurl>
                    <releases>
                        <enabled>trueenabled>
                    releases>
                    <snapshots>
                        <enabled>trueenabled>
                    snapshots>
                repository>
               <repository>
                    <id>googleid>
                    <url>https://maven.aliyun.com/repository/googleurl>
                    <releases>
                        <enabled>trueenabled>
                    releases>
                    <snapshots>
                        <enabled>trueenabled>
                    snapshots>
                repository>
               <repository>
                    <id>spring-pluginid>
                    <url>https://maven.aliyun.com/repository/spring-pluginurl>
                    <releases>
                        <enabled>trueenabled>
                    releases>
                    <snapshots>
                        <enabled>trueenabled>
                    snapshots>
                repository>
               <repository>
                    <id>apacheid>
                    <url>https://maven.aliyun.com/repository/apache-snapshotsurl>
                    <releases>
                        <enabled>trueenabled>
                    releases>
                    <snapshots>
                        <enabled>trueenabled>
                    snapshots>
                repository>
            repositories>
        profile>
    profiles>
settings>
  • 在命令行跑 mvn help:effective-settings 可以看到是否有效

设置 IDEA

  • 对于新 Project 需要从这里设置:
    IntelliJ IDEA 用 Maven 下载依赖超时报错_第1张图片

  • 对于当前项目则需要从这里设置
    IntelliJ IDEA 用 Maven 下载依赖超时报错_第2张图片

  • 随后,设置以下:

    • settings.xml 路径:
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第3张图片
    • 在 Importing 的 VM options for importer 和 Runner 的 VM Options 加入:-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第4张图片
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第5张图片
  • 记住 Maven 下依赖报错的万能(几乎)解决方式 3 步骤(循环做几遍):

    • maven clean
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第6张图片
    • maven install
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第7张图片
    • Reload All Maven Projects
      IntelliJ IDEA 用 Maven 下载依赖超时报错_第8张图片

至于没用?

IntelliJ IDEA 用 Maven 下载依赖超时报错_第9张图片

尾巴

好的,感谢你看到这里,对文章有错误的地方欢迎指出,谢谢。
如果觉得本文写得不错,不妨点赞、评论、收藏、分享,你的三连是对我最大的支持!

我的 Github:zhangt2333’s Github
我的 CSDN:zhangt2333’s CSDN
我的 博客园:zhangt2333’s cnblog

本文作者:zhangt2333
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议 。转载请注明出处!

你可能感兴趣的:(Java,基础,java,maven)