java - Find version number of certain plugins in Eclipse -
more need write code can find eclipse version number (4.7.0). can't in file (.eclipseproduct or about.mappings) , need make api call.
so wondering whether i'll able find out version number of plugin org.eclipse.platform
java program.
i guess simplest way system properties, assuming you're within eclipse runtime-workbench.
system.getproperty("eclipse.buildid")
if you're not within eclipse context there's either installation files ".eclipseproduct" or through debugger.
Comments
Post a Comment