我刚刚下载了Maven 3.0.4。
我的变数是:
M2_HOME C:\Program Files (x86)\apache-maven-3.0.4
JAVA_HOME C:\Program Files\Java\jdk1.6.0_35
和我的路径
C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\12.0\DLLShared\;C:\Program Files (x86)\Roxio\OEM\AudioCore\;%FRASCATI_HOME%/bin;%JAVA_HOME%\bin;%M2_HOME%\bin
不在maven目录时出现此错误:
C:\Users\rmescalera>mvn -version
"mvn" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
和另一个来自maven目录:
ERROR: M2_HOME is set to an invalid directory. M2_HOME = "C:\Program Files (x86)\apache-maven-3.0.4\bin" Please set the M2_HOME variable in your environment to match the location of the Maven installation
关键点在maven webpage,它说在PATH中设置%MAVEN_HOME%\ bin但是当我下载并解压缩时,这就是我得到的结构:
所以,显然apache-maven-3.0.4中没有bin目录!
我曾尝试仅复制内部的内容
C:\Program Files (x86)\apache-maven-3.0.4\apache-maven\src
进入新的C:/maven directory and setting the right variables
怎么了?我得到的这个目录结构是什么?我的变量应该指向何处?
答案 0 :(得分:6)
好像你已经下载了maven源代码。从here下载。确保您正在下载(Binary zip)
答案 1 :(得分:1)
你已经下载了maven的源码tar / zip,如果你想使用那个版本,你必须先编译它。 请改为下载binary distribution。
答案 2 :(得分:0)
我在安装maven 3.1.1时遇到了同样的问题。 原因是我在路径变量中还有一个旧版本的maven 2.0.4,在我的%M2_HOME%\ bin
之前我从PATH中删除了旧版本,但它确实有效。