文章目录
- 一、MVN 的下载
- 二、配置maven
-
- 2.1、更改maven/conf/settings.xml配置
- 2.2、配置环境变量
一、MVN 的下载
- 还是那句话,要去就去官网或者github,别的地方不要去下载。
我们下载binaries/ 目录下的
cd /opt/server
wget https://downloads.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz
二、配置maven
2.1、更改maven/conf/settings.xml配置
- 解压
tar -zxvf apache-maven-3.9.6-bin.tar.gz -C /opt/server && mv /opt/server/apache-maven-3.9.6 /opt/server/maven
- 如果你的仓库是在远程地址,那么就要配置你的仓库的地址
[root@fat-2 maven]# pwd
/opt/server/maven
[root@fat-2 maven]# vim conf/settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd"