Installing the plugin in eclipse using the command line

I have an update site and I got a directory that contains functions and plugins

How to install plugin in eclipse application using command line? I want to automate this process

+6
source share
1 answer

You can invoke the p2 Director application using something like this:

eclipsec.exe -application org.eclipse.equinox.p2.director -repository http://download.eclipse.org/releases/galileo/ -installIU org.eclipse.cdt.feature.group -destination d:/eclipse/ -profile SDKProfile 

There is also a link to the p2 wiki .

+6
source

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


All Articles