Jenkins 自动化
maven 安装
如何安装: https://www.runoob.com/maven/maven-setup.html
官网: https://maven.apache.org/
历史版本: https://archive.apache.org/dist/maven
wget https://archive.apache.org/dist/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.tar.gz
tar -xvf apache-maven-3.6.1-bin.tar.gz -C /usr/local/
cp /etc/profile /etc/profile.bak
cat <<'EOF'>> /etc/profile
export MAVEN_HOME=/usr/local/apache-maven-3.3.9
export PATH=${PATH}:${MAVEN_HOME}/bin
EOFnode 安装
wget https://nodejs.org/dist/v14.18.3/node-v14.18.3-linux-x64.tar.xz
tar xf node-v14.18.3-linux-x64.tar.xz -C /usr/local/
cp /etc/profile /etc/profile.bak
cat <<'EOF'>> /etc/profile
export NODE_HOME=/usr/local/node-v14.18.3-linux-x64
export PATH=$PATH:$NODE_HOME/bin
EOFJava 11
官网: https://www.oracle.com/java/technologies/downloads/#java11
华为镜像站: https://repo.huaweicloud.com/java/jdk/
docker-compose
gitlab 安装
Last updated