Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Version

How do you check the current version of eclipse that I am currently running? Is it possible to tell if it is aqua or carbon (I am running Mac OS X 10.5)?

like image 300
daniyalzade Avatar asked Feb 22 '10 19:02

daniyalzade


People also ask

How do I know my Eclipse version?

Look at Help -> About Eclipse IDE. This will tell which product and version thereof that you have installed.

Which Eclipse version is best?

Generally Java 8 works the best for most/all versions of Eclipse, including older ones. But if you want to use newer language/library features for Java development and need a newer version of Java for that purpose then newer versions should work with 2019-03 as well.

What Java version is Eclipse?

Current releases of Eclipse require Java 11 JRE/JDK or newer.


2 Answers

My eclipse has a file .eclipseproduct in its' main folder which contains:

name=Eclipse Platform id=org.eclipse.platform version=3.4.0 

Perhaps that might help?

Edit: Couldn't find any useful command-line switch for that task.

like image 162
zb. Avatar answered Oct 05 '22 15:10

zb.


In case anyone has installed one of the 'bundled' versions of Eclipse (e.g. bundled with EE development tools as below) and is still looking, the steps below will show the 'bundled' version and the platform version (and other component versions also):

First select 'About Eclipse' from the Eclipse menu:

alt text

then select 'Installation details from the box below' alt text

Next click on the triangle against 'Eclipse IDE for Java EE Developers' below to expand it: alt text

And now you should be able to read the version numbers, as below: alt text

By now of course you may be wondering if everything else in the IDE is this obscure...

like image 29
Mick Avatar answered Oct 05 '22 14:10

Mick