How to get Current IntelliJ version programmatically Permanently deleted user Created May 25, 2017 04:47 Can anyone help me to get current intelliJ version in java, programmatically
Do you mean the version your plug-in currently runs under or the latest version available for the download? What problem are you trying to solve?
if(IntelliJ.version.equal(2017.1.2)){
do somthing
}else{
do somthing
}
There are also other methods to get version components separately (major/minor/patch/micropatch).