今天將IntellIJ IDEA 關於Maven的配置總結一下,方便之後可參考。java
IDEA版本:apache
IntelliJ IDEA 2017.2
Build #IU-172.3317.76, built on July 15, 2017
Licensed to Administratorwindows
JRE: 1.8.0_152-release-915-b5 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 7 6.1api
IntelliJ IDEA 是Java開發利器,用社區版不爽,幹催就用旗艦版,這個是收費的,須要licence。 maven
若是你資金充足,請自行購買收費版的Idea:https://www.jetbrains.com/idea/buy。ide
1.下載apache-maven文件,選擇本身須要的版本,地址: http://mirror.bit.edu.cn/apache/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.zip ui
2.解壓1所下載文件,本人解壓到:D:\server\maven\apache-maven-3.5.0this
3.配置Maven環境變量google
a. MAVEN_HOME : D:\server\maven\apache-maven-3.5.0url
b.PATH : %MAVEN_HOME%\bin;
c. MAVEN_OPTS : -Xms128m -Xmx512m -Duser.language=zh -Dfile.encoding=UTF-8
4.在CMD中輸入mvn -v,如出現下列信息,表示配置成功。
其中會顯示Java 配置環境以及Maven配置環境
1.在D盤(我的根據自身狀況而定)新建文件,以下:
2.配置D:\server\maven\中setting.xml文件,內容以下:
<?xml version="1.0" encoding="UTF-8"?> <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"> <pluginGroups /> <proxies /> <servers /> <localRepository>D:/server/maven/repository</localRepository> <mirrors> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> </mirror> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>central</id> <name>Maven Repository Switchboard</name> <url>http://repo1.maven.org/maven2/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>repo2</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://repo2.maven.org/maven2/</url> </mirror> <mirror> <id>ibiblio</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> </mirror> <mirror> <id>jboss-public-repository-group</id> <mirrorOf>central</mirrorOf> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public</url> </mirror> <mirror> <id>google-maven-central</id> <name>Google Maven Central</name> <url>https://maven-central.storage.googleapis.com </url> <mirrorOf>central</mirrorOf> </mirror> <!-- 中央倉庫在中國的鏡像 --> <mirror> <id>maven.net.cn</id> <name>oneof the central mirrors in china</name> <url>http://maven.net.cn/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> </settings>
Idea 自帶了apache maven,默認使用的是內置maven,因此咱們能夠配置全局setting,來調整一下配置,好比遠程倉庫地址,本地編譯環境變量等。
1.打開Settings,在輸入框輸入maven,如圖
2.若是本地設置了MAVEN_OPTS 系統環境變量,這個步驟能夠忽略。
3.若是配置了本地apache-maven setting.xml 中的軟件源,這步驟能夠忽略。
好了,大功告成,,能夠開始開心的擼代碼了!