How to install maven in linux operating system

Ubuntu Run the following command to install maven in ubuntu operating system

sudo apt update
sudo apt install maven

Centos Run the following command to install maven in Centos operating system

sudo yum update
sudo yum install maven

How to check the version of git

mvn --version
Next Topic

How to generate a sample java application using Maven