Reputation: 6431
On windows, I am trying to install Maven by following the instructions from here
. The step that states "Add the bin directory of the created directory apache-maven-3.3.9 to the PATH environment variable"
is not making much sense to me. Could someone that has successfully installed Maven please explain what this step involves. I have already set the JAVA_HOME
environment variable.
Upvotes: 2
Views: 3035
Reputation: 3616
Add the path to the maven bin folder into your windows PATH variable. Here is an image reference. Hope that helps.
Upvotes: 1
Reputation: 56
In the link you provided, there are more clear instructions:
Adding to PATH: Add the unpacked distribution’s bin directory to your user PATH nvironment variable by opening up the system properties (WinKey + Pause), selecting the “Advanced” tab, and the “Environment Variables” button, then adding or selecting the PATH variable in the user variables with the value C:\Program Files\apache-maven-3.3.9\bin. The same dialog can be used to set JAVA_HOME to the location of your JDK, e.g. C:\Program Files\Java\jdk1.7.0_51
Open a new command prompt (Winkey + R then type cmd) and run mvn -v to verify the installation.
Did you try this?
Upvotes: 2
Reputation: 68715
Add the bin directory of the created directory apache-maven-3.3.9 to the PATH environment variable
This is to allow you run mvn command from anywhere. Otherwise you will have to use either the full path of mvn command or run it form that directory.
Upvotes: 2