Mac IntellIJ IDEA 配置本地 Maven 以及 修改 默认 Maven Repository

一.配置Maven环境
1.下载apache-maven文件http://mirror.bit.edu.cn/apache/maven/maven-3/3.5.3/binaries/apache-maven-3.5.3-bin.zip
2.解压1所下载文件,本人解压到:/MyApplication/maven/apache-maven-3.5.33.配置Maven环境变量

open .bash_profile

添加以下内容并保存

#maven所在的目录  
export M2_HOME=/MyApplication/maven/apache-maven-3.5.3
#maven bin所在的目录
export M2=$M2_HOME/bin
#将maven bin加到PATH变量中
export PATH=$M2:$PATH

二.修改Maven仓库路径
1、新建文件夹
创建文件夹 /MyApplication/maven/repository
创建文件 /MyApplication/maven/setting.xml
2、配置setting.xml



    
    
    
    
    
    /MyApplication/maven/repository
    
    
        
            alimaven
            central
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central/
        
        
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/groups/public/
            central
        
        
            central
            Maven Repository Switchboard
            http://repo1.maven.org/maven2/
            central
        
        
            repo2
            central
            Human Readable Name for this Mirror.
            http://repo2.maven.org/maven2/
        
        
            ibiblio
            central
            Human Readable Name for this Mirror.
            http://mirrors.ibiblio.org/pub/mirrors/maven2/
        
        
            jboss-public-repository-group
            central
            JBoss Public Repository Group
            http://repository.jboss.org/nexus/content/groups/public
        
        
            google-maven-central
            Google Maven Central
            https://maven-central.storage.googleapis.com
            
            central
        
        
        
            maven.net.cn
            oneof the central mirrors in china
            http://maven.net.cn/content/groups/public/
            central
        
    
    

三.IntellIJ IDEA 中配置Maven
Idea 自带了apache maven,默认使用的是内置maven,所以我们可以配置全局setting,来调整一下配置,比如远程仓库地址,本地编译环境变量等。
打开 Idea 的Preferences(Settings)在输入框输入maven,编辑以下信息,点击Apply-->OK
Mac IntellIJ IDEA 配置本地 Maven 以及 修改 默认 Maven Repository_第1张图片

如果本地设置了MAVEN_OPTS 系统环境变量,这个步骤可以忽略

Mac IntellIJ IDEA 配置本地 Maven 以及 修改 默认 Maven Repository_第2张图片

如果配置了本地apache-maven setting.xml 中的软件源,这步骤可以忽略

Mac IntellIJ IDEA 配置本地 Maven 以及 修改 默认 Maven Repository_第3张图片

点击Apply-->OK 就完成了

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