vote up 2 vote down star

Hi,

Background: I've got a new eclipse installation and have installed the m2eclipse plugin. After startup m2eclipse generates the message:

Eclipse is running in a JRE, but a JDK is required

Following the instructions from here I've changed the eclipse.ini file to use the JDK JVM:

-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
-vm
"C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe"

After restarting eclipse however, I still get the message saying its running under the JRE and not the JDK.

Looking at the eclipse configuration via Help -> About Eclipse -> Installation Details -> Configuration it seems like eclipse is picking up the JVM configuration details from somewhere else:

...
-vm
C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
eclipse.home.location=file:/C:/Program Files (x86)/eclipse/
eclipse.launcher=C:\Program Files (x86)\eclipse\eclipse.exe
eclipse.p2.data.area=@config.dir/../p2/
eclipse.p2.profile=epp.package.jee
eclipse.product=org.eclipse.epp.package.jee.product
eclipse.startTime=1252669330296
eclipse.vm=C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
eclipse.vmargs=-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
-vm
"C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe"
-XX:MaxPermSize=256m
...

My question is where is the first -vm argument coming from and how can I remove or change it?

Thanks

Update: I have updated the eclipse.ini file as per VonC's answer. I'm now getting an error when launching eclipse saying:

A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locations: "C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe"

I've confirmed that the path is correct and can be executed via the command line.

Complete eclipse.ini below:

-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vm
"C:\Program Files\Java\jdk1.6.0_16\bin\javaw.exe"
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m

Solution: it seems like there was still something wrong with the eclipse.ini file. I replaced it completely with the settings given by VonC in the post he linked and eclipse is now starting properly and using the correct JVM. Full eclipse.ini below for anyone else with the same problem:

-showlocation
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
384m
-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-vm
C:\Program Files (x86)\Java\jdk1.6.0_16\jre\bin\client\jvm.dll
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms128m
-Xmx384m
-Xss4m
-XX:PermSize=128m
-XX:MaxPermSize=128m
-XX:CompileThreshold=5
-XX:MaxGCPauseMillis=10
-XX:MaxHeapFreeRatio=70
-XX:+UseConcMarkSweepGC
-XX:+CMSIncrementalMode
-XX:+CMSIncrementalPacing
-Dcom.sun.management.jmxremote
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=C:/jv/eclipse/mydropins
flag
Beware of any space at the end of your path. Complete your question with the new eclipse.ini for us to debug. – VonC Sep 11 at 12:31
You don't need double quotes around the -vm argument, even if there are spaces in the path. I also use forward slashes / (yes, even on windows). – stevendick Sep 11 at 12:49
Just tried that, after removing the quotes from the launcher just seems to quit and not do anything (not even getting the error message). – Jared Russell Sep 11 at 12:52
1  
As Aviator says, you need Eclipse and the JDK to match in terms of architecture - either both 32bit or both 64bit. – stevendick Sep 11 at 13:08
You did use the settings for eclipse3.5, but not completely: you have twice the --launcher directive. Please copy completely my settings, and adapt them. – VonC Sep 11 at 13:16
show 3 more comments

2 Answers

vote up 3 vote down check

See:

for an example of parameters order.

-vm should be before -vmargs

link|flag
Yes, -vm must before -vmargs. See the end of help.eclipse.org/galileo/topic/… – Csaba_H Sep 11 at 12:21
I've tried this and am now getting an error saying that no JVM could be found at the specified location. The path is correct so this must be something to do with eclipse. Any ideas? – Jared Russell Sep 11 at 12:28
vote up 2 vote down

I think your machine is 64bit windows?

I cannot see a 64bit windows version of eclipse in the site. So only 32 bit might be available. Are you sure you have a 32bit JDK installed in your machine? Just a thought...

link|flag
You're correct, I've got the 64-bit version of the JDK installed and thats what I've got eclipse pointing to. I'll try downloading the 32-bit version and see if I have any better luck. – Jared Russell Sep 11 at 12:48
Wow! Great. I hope it will work definitely! Gud Luck! – Aviator Sep 11 at 12:50
No luck I'm afraid, pointing to the 32-bit JDK gives the same error. – Jared Russell Sep 11 at 12:55
Did you try putting -vm to point 32bit jvm.dll instead of javaw.exe? (use jre inside the JDK for searching jvm.dll) – Aviator Sep 11 at 13:07
64-bit Eclipse is well hidden on the website as it's not an official platform (god knows why, we've had 64-bit for a while). Here it is: download.eclipse.org/eclipse/downloads/… – stevendick Sep 11 at 13:11
show 6 more comments

Your Answer

Get an OpenID
or

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