Reputation: 537
I'm using Eclipse compiler for java. But how do I check the version number of the compiler?
Upvotes: 2
Views: 381
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:
And click on it:
Upvotes: 4