GreenGiant
GreenGiant

Reputation: 5256

Why does Eclipse reference a 1.4 JRE?

When attempting to create a new Java Project, eclipse is telling me that the workspace is using a 1.4 JRE (see screenshot). Any ideas why it might be saying this? I don't even have a 1.4 JRE installed on my machine.

I'm using GGTS 3.5.1 on Juno 3.8.2.

My GGTS.ini (eclipse.ini) file has:

-vm
C:/Program Files/Java/jdk1.7.0_15/jre/bin/javaw.exe

enter image description here enter image description here enter image description here

Upvotes: 0

Views: 409

Answers (1)

E-Riz
E-Riz

Reputation: 32984

As @Marvin mentioned in the comments above, Eclipse Juno is not compatible with JDK 1.8. It might be a bug that Eclipse interprets JDK 1.8 as 1.4, but I suspect you can work around it by either removing the 1.8 from your list of installed JREs or updating to a recent version of Eclipse/Grails Tool Suite (Juno is quite old, very soon 3 full releases behind and the latest version of GGTS is based on Eclipse 4.4).

Upvotes: 1

Related Questions