Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing plugin into eclipse using command line

I have an update site, and got the directory which contains the features and plugins

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

like image 763
becks Avatar asked Jul 24 '12 14:07

becks


1 Answers

You can invoke 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

Here is also link to p2 wiki.

like image 86
Eugene Kuleshov Avatar answered Oct 26 '22 15:10

Eugene Kuleshov