下载Maven
配置环境变量
Windows下配置环境变量即可,Ubuntu下在~/.bashrc
里加入如下两行语句即可。
export M2_HOME=/home/alan/Documents/Applications/apache-maven-3.5.0
export PATH=$M2_HOME/bin:$PATH
在命令行运行mvn -v
,若显示Maven版本信息则说明环境变量配置成功。
配置settings.xml
打开用户目录下的~/.m2/settings.xml
(没有的话从安装目录的conf文件夹下复制一个过来)。
配置本地仓库地址
<localRepository>/home/alan/Documents/Frameworks/Maven-repository</localRepository>
配置Maven国内镜像
<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>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>
网友评论