Raiyad Raad
Raiyad Raad

Reputation: 537

How do I check which version of Eclipse Compiler am I using?

I'm using Eclipse compiler for java. But how do I check the version number of the compiler?

Upvotes: 2

Views: 381

Answers (2)

Pedantic
Pedantic

Reputation: 5022

Eclipse includes its own compiler for running and debugging code from within the IDE. Its part of the JDT Core plugin and is based on the old Visual Age for Java compiler.

More info can be found in this StackOverflow question.

You can check which version by going to Help->About Eclipse, finding the "Eclipse.org" tile: About Eclipse

And click on it:

JDT info

Upvotes: 4

Florent
Florent

Reputation: 13

Go to Window > Preferences > Java > Compiler.

Snapshot

enter image description here

Upvotes: -1

Related Questions