Eclipse安装Maven会出现的问题

来源:互联网 发布:西南财大网络教育图片 编辑:程序博客网 时间:2024/05/21 05:39

安装完Maven后,打开eclipse会出现如下:

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 JREs are also using JDK installs.


解决方法很简单:

在eclipse的安装目录中找到eclipse.ini文件编辑这个文件

 

-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
128M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
128m
-vm
D:\Program Files\Java\jdk1.7.0_03\bin

--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.6
-Xms40m
-Xmx256m


黑色粗体部分就是需要添加的内容

注意:添加-vm后就需要另起一行,并且-vm一定要在-vmargs这个参数的上面。

原文:http://blog.csdn.net/hongchangfirst/article/details/8015072

作者:hongchangfirst



原创粉丝点击