install Maven on linux ubuntu

As we discussed in previous tutorials that Apache maven is Java based project management tool so JDK is the first requirement. Let us discuss step by step maven installation on linux.

Install maven on linux:

  1. Check Java installation on your machine. Use $ java -version command to verify the java installation. Install the java software development kit if it is not installed.

  2. Add JAVA_HOME environment variable if it is not added. Export JAVA_HOME=/usr/local/java-current. Export PATH=$PATH:$JAVA_HOME/bin/.

  3. Download apache maven from here.

  4. Extract the maven archive file (like apache-maven-3.3.1-bin.tar.gz) to the location where we want to install it. E.g. /usr/local/apache-maven.

  5. Add maven environment variables. Use command export M2_HOME=/usr/local/apache-maven/apache-maven-3.3.1. Now append the maven bin folder. Use command export PATH=/usr/local/apache-maven/apache-maven-3.3.1/bin.

  6. Verify maven installation using $ mvn –version command.
Please follow and like us:
Content Protection by DMCA.com