How to install Maven automatically in Linux continuous integration

How to install Maven automatically in Linux continuous integration

Unzip the Maven package

tar xf apache-maven-3.5.4-bin.tar.gz 

Move the unzipped Maven files to /usr/local/

mv apache-maven-3.5.4 /usr/local 

#!/bin/bash
#Maven installation directory mkdir /usr/maven
#Installation package placement directory cd /usr/src
http://mirrors.hust.edu.cn/apache/maven/maven-3/3.5.4/source/apache-maven-3.5.4-src.tar.gz
tar -xzvf apache-maven-3.5.4-bin.tar.gz
rm -f apache-maven-3.5.4-bin.tar.gz
mv apache-maven-3.5.4/* /usr/maven
#Configure environment variable PROFILE=$(cat /etc/profile)
PATH='export PATH=$PATH'
REPLACE='export PATH=$PATH:$MAVEN_HOME/bin'
#Is there already a configuration path for other environment variables if [[ $PROFILE == *$PATH* ]]
#Add variable path then echo "${PROFILE/$PATH/$REPLACE}" > /etc/profile
#Append the path to the end of the text else echo "$REPLACE" >> /etc/profile
fi
echo "export MAVEN_HOME=/usr/maven" >> /etc/profile
#Update the configuration file source /etc/profile
# View the mvn version mvn -version

Update Files

source /etc/profile

verify

mvn -v 

At this point, the Maven installation is complete.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to modify the default Python version when installing Python on Linux
  • Summary of methods to check whether the port is open in Linux
  • MySQL 8.0.15 installation and configuration graphic tutorial and password change under Linux
  • Linux CentOS6.9 installation graphic tutorial under VMware
  • Solution to MySQL garbled code problem under Linux
  • Summary of methods for creating, listing, and deleting Docker containers on Linux
  • Solution to the problem that Linux cannot connect to the Internet in VMware after the computer shuts down unexpectedly
  • How to view available network interfaces in Linux
  • Linux system to view CPU, machine model, memory and other information
  • Solution to the failure of loading dynamic library when Linux program is running

<<:  Introduction to fuzzy query method using instr in mysql

>>:  WeChat applet implements video player sending bullet screen

Recommend

Mini Program to Implement Sieve Lottery

This article example shares the specific code of ...

A brief discussion on the execution details of Mysql multi-table join query

First, build the case demonstration table for thi...

Detailed explanation of data type issues in JS array index detection

When I was writing a WeChat applet project, there...

Automatically load kernel module overlayfs operation at CentOS startup

To automatically load kernel modules in CentOS, y...

Detailed explanation of the integer data type tinyint in MySQL

Table of contents 1.1Tinyint Type Description 1.2...

The most detailed method to install docker on CentOS 8

Install Docker on CentOS 8 Official documentation...

Explanation of the working principle and usage of redux

Table of contents 1. What is redux? 2. The princi...

Detailed configuration of mysql8.x docker remote access

Table of contents Environmental conditions Errors...

Summary of how to modify the root password in MySQL 5.7 and MySQL 8.0

MySQL 5.7 version: Method 1: Use the SET PASSWORD...

HTML text escape tips

Today I saw a little trick for HTML text escaping ...

Linux method example to view all information of the process

There is a task process on the server. When we us...