Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm about to work through a book, "Flex on Java" and it's asked me to install maven 2+ i downloaded maven from the apache site. Added :

M2_HOME = C:\apache-maven-2.2.1

and

M2 = %M2_HOME%\bin

to the environment vars according to the instructions at http://maven.apache.org/download.html then it gets to number 6 which says "In the same dialog, update/create the Path environment variable in the user variables and prepend the value %M2% to add Maven available in the command line."

Which environment variable should i edit and add %M2% to?

After googling i found a post which says "append", not prepend to the value of JAVA_HOME I've tried prepending and appending it to the java home var but when i try to do an mvn command from the command line it says its not recognised.

Never used maven before so this is my first set up. Can anyone see what i'm not doing right or what else i need to do to be able to use the mvn command, please and thank you.

share|improve this question
as Dave mentioned above, also add M2 as a system variable (probably in a windows 7 thing) – Nic van Niekerk Jan 10 '12 at 9:39

5 Answers

up vote 10 down vote accepted

The environment variable you should edit is path.

The route on Windows 7 is:

Control Panel -> System -> Advanced system settings -> Advanced Tab -> Environment Variables -> The path variable is right on the *system variable*s area

The path variable specifies a group of directories and/or paths that Windows searches for commands definitions. You should append to the end of this variable value the value ;%M2% (note the semi-colon, different paths should be separated by them) in order for Windows to be able to find the Maven command definitions.

Appending ;%M2 at the end of the path environment variables is the same as appending ;C:\apache-maven-2.2.1\bin

To test that everything is ok, type mvn --version, if everything is right then the current Maven version you're using should be displayed on the screen.

share|improve this answer
Ahhhhhhhhhhh, thank you. I was focusing on the user env. vars and kept misreading that so i didn't realise it meant the system path var. thanks again. – zcourts Aug 4 '10 at 3:08
thanks for this. – Sean F Jun 27 '12 at 23:53

for further information and future googlers : i just tried to run maven , so i added the M2_HOME to "user variables" but the system failed to recognize mvn --version command, so i added M2_HOME to System Variables and it solved the problem (the apache told us to add the M2_HOME in user variables)

share|improve this answer

Had the same issue. As mentioned Dave and Nic M2_HOME and M2 should be added to the System variables.

share|improve this answer

It is strange because JAVA_HOME is perfectly picked as a USER variable whereas on Windows7 mvn is not properly installed unless its variables (both %M2% and %M2_HOME%) are set as SYSTEM variables. I can't explain the rationale behind it but its a workaround.

share|improve this answer

I had this same issues when installing Maven. But you do not have to add any System variables. Follow the instructions and add all necessary User variables, including a new "Path" variable.

Ignore that it does not look to be working and run mvn --version from cmd and it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.