您的位置:首页 > 编程语言 > Java开发

解决安装 maven for eclipse插件后,eclipse启动时警告

2010-06-12 17:22 537 查看
在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.

**************************************

看网上的解决办法如下:

(1)set your JDK as a default Java environment in eclipse
(default installed JRE)


Open eclipse. Click on ‘Window’ -> ‘Preferences’ -> ‘Java’
-> ‘Installed JREs’.

If you can’t find any JDK on the list -> click ‘Add’ ->
‘Standard VM’ -> set all paths and click ‘Finish’.

After that – check this JDK on the list of installed JREs and click
‘OK’.

(2)add path to your SDK in eclipse.ini

open ‘eclipse.ini’ and add there: -vm
path_to_javaw_on_your_machine,so in my example it will be (jdk1.6.0_17
on Windows):

-vm

C:/Progra~1/Java/jdk1.6.0_17/jre/bin/javaw

Notice 1: Do not use paths with spaces!
Replace all
dir names with spaces to their shortcuts. For example: ‘Program Files’
is ‘Progra~1′.

Notice 2: ‘-vm’ is in the first line, path is
in the second line


My full ‘eclipse.ini’ looks like this:

-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

C:/Progra~1/Java/jdk1.6.0_17/jre/bin/javaw

-vmargs

-Xms40m

-Xmx256m

%%%%%%%%%%%%%%%%%%%%%%%%

可是我按照步骤执行下来,重启MyEclipse还是一如既往的出项上述警告,哪位高手知道是什么原因,望不吝赐教!O(∩_∩)O谢谢!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐