I am trying to install Maven on a Mac following the instructions here;
http://maven.apache.org/download.cgi#Installation_Instructions.
However I couldn't figure out how to
Make sure that JAVA_HOME is set to the location of your JDK, e.g. export JAVA_HOME=/usr/java/jdk1.7.0_51 and that $JAVA_HOME/bin is in your PATH environment variable.
My Java JDK is stored on desktop, so should I use the command?
export JAVA_HOME=/users/alex/desktop/jdk1.7.0_45
After I've done that, should the JAVA_HOME/bin be in my path environment variable?
It did work. The error message when I run maven --version says
Error: JAVA_HOME is not defined correctly. We cannot execute /users/alex/desktop/jdk1.7.0_45/bin/java
I am quite confused with the whole process. Many thanks for your help in advance. Really appreciate it.