转自:phpdragon的《IntellIJ IDEA 配置 Maven 以及 修改 默认 Repository》
原址:https://www.cnblogs.com/phpdragon/p/7216626.html
今天将IntellIJ IDEA 关于Maven的配置总结一下,方便以后可参考。
IDEA版本:
IntelliJ IDEA 2017.2
Build #IU-172.3317.76, built on July 15, 2017
Licensed to Administrator
JRE: 1.8.0_152-release-915-b5 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 7 6.1
IntelliJ IDEA下载地址:https://www.jetbrains.com/idea/download/#section=windows
IntelliJ IDEA 是Java开发利器,用社区版不爽,干催就用旗舰版,这个是收费的,需要licence。
如果你资金充足,请自行购买收费版的Idea:https://www.jetbrains.com/idea/buy。
1.下载apache-maven文件,选择自己需要的版本,地址:http://mirror.bit.edu.cn/apache/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.zip
2.解压1所下载文件,本人解压到:D:servermavenapache-maven-3.5.0
3.配置Maven环境变量
a. MAVEN_HOME : D:servermavenapache-maven-3.5.0
b.PATH :%MAVEN_HOME%in;
c. MAVEN_OPTS: -Xms128m -Xmx512m -Duser.language=zh -Dfile.encoding=UTF-8
4.在CMD中输入mvn -v,如出现下列信息,表示配置成功。
其中会显示Java 配置环境以及Maven配置环境
1.在D盘(个人根据自身情况而定)新建文件,如下:
2.配置D:servermaven中setting.xml文件,内容如下:
D:/server/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
Idea 自带了apache maven,默认使用的是内置maven,所以我们可以配置全局setting,来调整一下配置,比如远程仓库地址,本地编译环境变量等。
1.打开Settings,在输入框输入maven,如图
2.如果本地设置了MAVEN_OPTS 系统环境变量,这个步骤可以忽略。
3.如果配置了本地apache-maven setting.xml 中的软件源,这步骤可以忽略。
好了,大功告成,,可以开始开心的撸代码了!