Enroll in Selenium Training

Maven is a tool that is also available on Mac machine. The setup is almost similar to what we have to do on a Windows machine. Maven basics remain same across Windows and Mac machines. However the installation part differs. You can take a look at the tutorials here:

How to Install Maven on Mac?

We will learn to set up Maven on Mac machines here and rest is the same on the two platforms. Just take a look at the basic tutorials

Prerequisite: Make sure you have Java installed on your Mac machine.

Step 1 - Download Maven binaries

First, we have to download to Maven binaries. To do so you have we will go to the page Maven download. The latest version of Maven is Maven 3.3.3. On the downloads page above click on the link apache-maven-3.3.3-bin.tar.gz link. Here is a small screenshot for you

[singlepic id=733 w= h= float=left]

Once you click on this link a .tar.gz file will be downloaded in the Downloads folder. Download folder icon can be found on the upper right corner of the Safari browser window. As shown in the image below.

DownloadFolder

Step 2- Unzip the files

Now go to the Downloads folder and unzip the files thereby double-clicking on the downloaded file. In this tutorial, the .tag.gz file that we have got is apache-maven-3.3.3-bin-2.tar. Here is what you will get when you will unzip/double click the folder

UnzipMaven

Step 3 - Set the Path variable

Like on a Windows system we have to set the path variable on a Mac machine too. Path variable will have to be updated to include the path on which you will copy all your Maven libraries. After unzipping the downloaded file just open the unzipped folder. You will find a few folders inside it. There will be a folder called bin, this folder will have a file called mvn. This is the file that is used to run Maven commands. We have to mention this file path in the Path variable of Mac system. Let's do this.

Open the terminal window on your Mac machine. You can find it using the Finder application by searching for the Terminal application. Once you have the terminal window up type in the following command to see all the environment variable

$ printenv

printenv

Now you have to find the path variable in the result of the printing command and see what all values we have in the path variable. To see only the path variable values we can type in command

$echo $PATH

echoPath

Here you can see that there is no path related to your mvn files. Lets now update the path variable to point to Maven's bin folder.

Note: Before doing that copy the unzipped folders from step 2 to some permanent location. Use the bin path corresponding to the new maven location.

In my system the bin path of Maven folder is /Users/viren/Documents/AllBins/apache-maven-3.3.3/bin/. Just get your correct Maven's bin folder path, command to do that is

$ export PATH=$PATH:/Users/viren/Documents/AllBins/apache-maven-3.3.3/bin/

here we are saying that update the PATH variable with the existing value of path + the new value of Maven's bin folder. Pay attention that: is the path separator.

UpdatePath

Hurray! We have set the path variable to now point to Maven's bin folder.

Step 4 - Check your Installation

This is simple all you have to do is run following command:

$ mvn -version

If this command works fine it will display the maven version and this is how it will look on terminal window.

mvnVersion

Now we have successfully installed Maven on a Mac machine.

Issue: If your mvn -version command returns following exception java.lang.UnsupportedClassVersionError: org/apache/maven/cli/MavenCli : Unsupported major.minor version 51.0 you have to set the JAVA_HOME variable. This is because Maven looks for JAVA_HOME variable to find JAVA installation.

Fix: All you have to do is find the correct Java installation path on your system and set the JAVA_HOME path using following command export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/

and then run the mvn -version command again. This time you will see that Maven version is displayed on terminal window.

How to Install Maven on Windows
How to Install Maven on Windows
Previous Article
How to Create a New Maven Project
How to Create a New Maven Project
Next Article
Virender Singh
I am Virender Singh, I have around 14 years of experience in the Technology domain.
Reviewers
Lakshay Sharma's Photo
Lakshay Sharma

Similar Articles

Feedback