一、下载
wget http://mirror.bit.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
二、解压
tar vxf apache-maven-3.6.3-bin.tar.gz
三、配置环境变量
- 编辑 profile 文件
vim /etc/profile
- 在末尾添加以下几行
MAVEN_HOME=/usr/local/maven export MAVEN_HOME export PATH=${PATH}:${MAVEN_HOME}/bin
其中 /usr/local/maven 为你的 Maven 解压目录
- 使配置文件生效
source /etc/profile
四、检验
mvn -v
出现 Maven 的版本号即表示安装成功
五、配置阿里云镜像
创建文件夹作为 maven 本地仓库
mkdir /usr/local/maven-repository
编辑 maven 配置文件
vim /usr/local/apache-maven-3.6.3/conf/settings.xml
settings 标签中加入本地仓库位置
<localRepository>/usr/local/maven-repository</localRepository>
mirrors 标签中添加阿里云镜像配置
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
profiles 标签中添加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>