Skip to content

Instantly share code, notes, and snippets.

@anacunha
Last active March 30, 2022 23:58
Show Gist options
  • Save anacunha/8400046ed181c4dead9e577fb061b2e7 to your computer and use it in GitHub Desktop.
Save anacunha/8400046ed181c4dead9e577fb061b2e7 to your computer and use it in GitHub Desktop.
Maven

Maven

Install Maven

curl -O https://dlcdn.apache.org/maven/maven-3/3.8.5/binaries/apache-maven-3.8.5-bin.tar.gz
  • Extract it:
tar xzvf apache-maven-3.8.5-bin.tar.gz
  • Move the Maven directory to /opt:
sudo mv apache-maven-3.8.5 /opt/ 
  • Add the bin directory inside the Maven directory to the PATH environment variable:
export PATH="/opt/apache-maven-3.8.5/bin:$PATH"
  • Confirm that installation was successful
mvn -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment