linux-tutorial/codes/deploy/tool/maven/install-maven3.sh

19 lines
554 B
Bash
Raw Normal View History

2018-02-01 16:34:02 +08:00
#!/usr/bin/env bash
echo -e "\n>>>>>>>>> install maven"
mkdir -p /opt/software/maven
cd /opt/software/maven
version=3.5.2
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
cat >> /etc/profile << EOF
MAVEN_HOME=/opt/software/maven/apache-maven-\${version}
PATH=\${MAVEN_HOME}/bin:\${PATH}
export MAVEN_HOME
export PATH
EOF
source /etc/profile