一,下载maven
https://archive.apache.org/dist/maven/maven-3/3.2.5/binaries/
二,修改maven下载镜像(修改阿里镜像,下载速度比较快)
/Users//Desktop//Service/apache-maven-3.2.5/conf/settings.xml
<mirrors>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror>
<id>mirrorId</id>
<mirrorOf>repositoryId</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
三、配置环境
两种方式:
1,配置用户下的.bash_profile文件
(显示隐藏文件
显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false或者显示)
在terminal输入
#cd ~
#vi .bath_profile
#点击 i 进入编辑模式
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_101.jdk/Contents/Home
MAVEN_HOME=/Users/yangjunfei/Desktop/***/Service/apache-maven-3.2.5
PATH=$MAVEN_HOME/bin:$PATH
PATH=$JAVA_HOME/bin:$PATH
export MAVEN_HOME
export JAVA_HOME
export PATH
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
#点击esc退出编辑
#:wq 保存
在terminal 输入 source .bash_profile,使其生效。
2,系统下的profile文件
在terminal 输入 sudo vim /etc/profile 然后键入i进入编辑模式
M3_HOME="/Users/yangjunfei/Desktop/***/Service/apache-maven-3.2.5"
PTAH="$PATH:$M3_HOME/bin"
export ME_HOME
export PATH
#点击esc退出编辑
#:wq 保存
#在terminal 输入 source /etc/profile,使其生效。
图片转自:http://www.jianshu.com/p/43f0f2d0e966
四、检测maven环境配置。
在terminal输入
echo $M3_HOME
mvn -version
五、自定义repo(如果修改的话需要配置,否则默认的就可以)
在maven安装目录下的conf里面有个settings.xml,大约54行,设置自己的repo(红色方框为新添加的自定义maven repository绝对路径)
图片转自:http://www.jianshu.com/p/43f0f2d0e966