up vote 29 down vote favorite
9
share [g+] share [fb]

I installed maven plugin for eclipse, then I get an error like below:

please make sure the -vm option in eclipse.ini is pointing to a JDK

how to use -vm option to point to my jdk in eclipse.ini?

link|improve this question

feedback

10 Answers

up vote 42 down vote accepted

let me share my solution

-vm 
D:/work/Java/jdk1.6.0_13/bin/javaw.exe
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256M
-framework
plugins\org.eclipse.osgi_3.4.3.R34x_v20081215-1030.jar
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
link|improve this answer
See also stackoverflow.com/questions/142357/… – VonC May 25 '09 at 8:22
feedback

Anything after the "vmargs" is taken to be vm arguments. Just make sure it's before that, which is the last pices in eclipse.ini

link|improve this answer
Yes very important detail! – Patrick Sep 16 '10 at 9:55
Thanks for mentioning that. – Martin Sep 16 '10 at 15:01
feedback

eclipse.ini file must have -vm on first line and path on second line. don't try to put everything into one line!

-vm
C:\Program Files\Java\jdk1.6.0_07\bin\javaw.exe

link|improve this answer
this answer saved at least one hour – huseyinalb Jun 26 '11 at 16:25
Thanks for the "onel line" trick. -vm "C:\Program Files\Java\jdk1.6.0_07\bin\javaw.exe" on one line does not work. – rds Aug 8 '11 at 9:17
feedback

There is a wiki page here.

There are two ways the jvm can be started: by forking it in a seperate process from the eclipse launcher, or by loading it in-process using the JNI invocation API.

If you specify -vm with a path to the actual java(w).exe, then the vm will be forked in a separate process. You can also specify -vm with a path to the jvm.dll so that the vm is loaded in the same process:

-vm
D:/work/Java/jdk1.6.0_13/jre/bin/client/jvm.dll

You can also specify the path to the jre/bin folder itself.

Note also, the general format of the eclipse.ini is each argument on a seperate line, it won't work if you put the "-vm" and the path on the same line.

link|improve this answer
feedback

-vm

C:\Program Files\Java\jdk1.5.0_06\bin\javaw.exe

remember, no quotes. no matter if your path has spaces. (opposed to command line execution)

see here: Find the JRE for Eclipse

link|improve this answer
feedback

Not sure if something has changed, but I just tried the other answers regarding entries in "eclipse.ini" for Eclipse Galileo SR2 (Win XP SR3) and none worked. Java is jdk1.6.0_18 and is the default Windows install. Things improved when I dropped "\javaw.exe" from the path.

Also, I can't thank enough the mention that -vm needs to be first line in the ini file. I believe that really helped me out.

Thus my eclipse.ini file starts with:

-vm
C:\Program Files\Java\jdk1.6.0_18\bin

FYI, my particular need to specify launching eclipse with a jdk arose from my wanting to work with the m2eclipse plugin.

link|improve this answer
feedback

You have to edit the eclipse.ini file to have an entry similar to this...

C:\Java\JDK\1.5\bin\javaw.exe (your location of java executable)
-vmargs
-Xms64m   (based on you memory requirements)
-Xmx1028m

also remember that in eclipse.ini, anything meant for eclipse should be before -vmargs line and anything for JVM should be after -vmargs line.

link|improve this answer
feedback

I know that there exists an command line option -vm to specify the path to executable of the java runtime. This may be the same as in eclipse.ini.

link|improve this answer
feedback

The JDK you're pointing to in your eclipse.ini has to match the eclipse installation.

If you are running a 32- or 64-bit eclipse, use a 32 or 64-bit java JDK, respectively.

link|improve this answer
feedback

Assuming you have a jre folder, which contains bin, lib, etc files copied from a Java Runtime distribution, in the same folder as eclipse.ini, you can set in your eclilpse.ini

-vm
jre\bin\javaw.exe
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.