Idea 下载不了源码 cannot download source

一、打开Terminal (Alt+F12),找到项目具体模块所在的文件夹,输入一下指令

mvn dependency:resolve -Dclassifier=sources

如果你的idea 终端无法使用mvn指令,要配置你idea中的maven的环境变量:

1、找到maven在idea中的位置,在你idea安装目录下的\plugins\maven

2、接下来配置环境变量:在你的用户变量,特别注意是用户变量中创建Path,然后将 你idea安装目录+\plugins\maven\lib\maven3\bin 复制进去

然后,重启Idea
Idea 下载不了源码 cannot download source_第1张图片

二、如果你执行第一步时 下载时: Download from central 从中心仓库下载很慢,pom中添加如下:

  
        
            aliyun
            https://maven.aliyun.com/repository/public
            
                true
            
            
                false
            
        
    
    
        
            aliyun-plugin
            https://maven.aliyun.com/repository/public
            
                true
            
            
                false
            
        
    

pom中更换阿里云仓库时不要忽略了pluginRepositories,原来,只有项目本身的依赖,走了aliyun这个repository,maven命令需要的插件(比如clean、install都是maven的插件),走的还是默认的repository。

你可能感兴趣的:(开发工具,intellij-idea,java,ide)