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:
|
<<: Introduction to fuzzy query method using instr in mysql
>>: WeChat applet implements video player sending bullet screen
All the orchestration files and configuration fil...
Mongodb has a db.serverStatus() command, which ca...
Preface For a long time, the application and lear...
How to write Vue foreach array and traverse array...
Why can it set the height, but unlike elements lik...
Result:Implementation code: <!DOCTYPE html>...
Preface There are two types of nginx modules, off...
In order to make the page display consistent betwe...
Step 1: Use Notepad to open the "my.ini"...
This article shares with you how to use Vue to ch...
This article shares the specific code of JavaScri...
Preface: Integer is one of the most commonly used...
Preface Normally, if we want to delete certain li...
Table of contents Presentation Layer Business Lay...
To beautify the table, you can set different bord...