Linux | Install Apache Maven 3
Install Apache Maven 3 on Ubuntu 12.10
Follow the below steps to install Maven3. Maven is a important tool which we might require to build some of the apache projects. So lets install it.Open you your terminal and type in the following commands.
sudo apt-get install mavenIf you get an error message like
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
then run the below command
sudo dpkg --configure -aAfter running the above command, again run the first command
sudo apt-get install mavenonce the installation is over, then check the version to make sure if the installation was successful.
mvn -version
Comments