安装配置maven
2020-02-03 本文已影响0人
深入浅出
1 Maven下载
最新下载:http://maven.apache.org/download.cgi
历史版本:https://archive.apache.org/dist/maven/maven-3/
下载apache-maven-3.5.4-bin.tar.gz
2 解压
解压到usr/local目录下
tar -zxvf apache-maven-3.5.4-bin.tar.gz -C /usr/local
3 建立链接
ln -s /usr/local/apache-maven-3.5.4/ maven
4 配置环境变量
4.1 在/etc/profile 添加下面两行
export MAVEN_HOME=/usr/local/apache-maven-3.5.4
export PATH=$MAVEN_HOME/bin:$PATH
4.2 执行下面命令,使环境参数生效
source /etc/profile
4.3 查看mvn版本,看是否配置正确
mvn -version
5 Maven配置 修改setting.xml
5.1 指定仓库位置
<localRepository>/home/zhuqingxu/maven/repository</localRepository>
5.2 修改maven默认的JDK版本
<profile>
<id>JDK-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
5.3 添加国内镜像源
<!-- 阿里云仓库 -->
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<!-- 中央仓库1 -->
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<!-- 中央仓库2 -->
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>