How to remove the Eclipse plugin through the command line?

I recently installed the Bravo editor plugin in my Eclipse and it crashed the Eclipse installation, now I can not start it.

I already tried calling it from the command line using eclipse -clean , but this is useless.

I would like to know how it can be removed from the command line.

+4
source share
1 answer

You can try Eclipse Director and put com.beck.ep.feature.group as an argument for -uninstallIU

The complete command for this:

 eclipse -application org.eclipse.equinox.p2.director -uninstallIU com.beck.ep.feature.group 

(Use eclipsec.exe on Windows.)

You can specify the installed functions to find the correct identifier with:

 eclipse -application org.eclipse.equinox.p2.director -listInstalledRoots 
+8
source

Source: https://habr.com/ru/post/1499425/


All Articles