在eclipse中安装了m2eclipse(maven插件) 的问题结解决
在安装后,出现下列警告: The Maven Integration requires that Eclipse be running in a JDK, because a number of Maven core plugins are using jars from the JDK. Please make sure the -vm option in eclipse.ini is pointing to a JDK and verify that Installed JRE’s are also using JDK installs.方法/步骤
-
设置系统安装的JDK目录
将你的jdk设置为eclipse 的默认java环境(默认的已安装jre)
打开eclipse,点击Window’ -> ‘Preferences’ -> ‘Java’ -> ‘Installed JREs’.
如果你在列表上找不到任何JDK,点击add->standard vm->(设置好路径之后)finish
最后,在已安装的JRE列表上勾选你系统所用的JDK, 然后点击ok
-
增加JDK路径到eclipse.ini文件中add path to your SDK in eclipse.ini
打开eclipse.ini,然后在-vm path_to_javaw_on_your_machine 添加jdk路径
所以在我的这个例子里,应该是:
-vm
D:\\Java\jdk1.6.0_13\jre\bin\javaw注意事项1:不能有空格,否则要用~1代替,如: ‘Program Files’ is ‘Progra~1′.
注意事项2:要分为2行写。-vm第一行,路径在第二行
最后eclipse.ini应该是这样的:
-startup plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519 -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m -vm D:\Java\jdk1.6.0_13\jre\bin\javaw -vmargs -Xms40m -Xmx256m -vm要在-vmargs前面。Notice : ‘-vm’ must be "-vmargs" above -
重启eclipse。