linux-tutorial/codes/linux/ops/soft/maven/install-maven3.sh

31 lines
1.3 KiB
Bash
Raw Normal View History

2018-02-01 16:34:02 +08:00
#!/usr/bin/env bash
2018-02-23 17:33:12 +08:00
###################################################################################
# 安装 Maven 脚本
# 适用于所有 linux 发行版本。
2018-09-29 10:16:24 +08:00
# Maven 会被安装到 /opt/maven 路径。
2018-02-23 17:33:12 +08:00
# 注意Maven 要求必须先安装 JDK
# Author: Zhang Peng
###################################################################################
2018-02-01 16:34:02 +08:00
echo -e "\n>>>>>>>>> install maven"
2018-09-29 10:16:24 +08:00
mkdir -p /opt/maven
cd /opt/maven
2018-02-01 16:34:02 +08:00
2018-09-29 10:31:06 +08:00
version=3.5.4
2018-02-02 17:53:50 +08:00
wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/${version}/binaries/apache-maven-${version}-bin.tar.gz
2018-02-01 16:34:02 +08:00
tar -zxvf apache-maven-${version}-bin.tar.gz
2018-02-02 17:53:50 +08:00
2019-02-22 17:09:40 +08:00
# 设置环境变量
2018-02-02 17:53:50 +08:00
cat >> /etc/profile << EOF
2019-02-22 17:09:40 +08:00
export MAVEN_HOME=/opt/maven/apache-maven-3.5.4
2018-02-23 17:33:12 +08:00
export PATH=\$MAVEN_HOME/bin:\$PATH
2018-02-02 17:53:50 +08:00
EOF
source /etc/profile
2019-02-22 17:09:40 +08:00
# 备份并替换 settings.xml使用 aliyun 镜像加速 maven
echo -e "\n>>>>>>>>> replace /opt/maven/apache-maven-${version}/conf/settings.xml"
cp /opt/maven/apache-maven-${version}/conf/settings.xml /opt/maven/apache-maven-${version}/conf/settings.xml.bak
2019-05-07 11:09:43 +08:00
wget -N https://raw.githubusercontent.com/dunwu/os-tutorial/master/codes/linux/ops/soft/maven/settings-aliyun.xml -O /opt/maven/apache-maven-${version}/conf/settings.xml