12

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

becks
  • 2,656
  • 8
  • 35
  • 64
  • 1
    possible duplicate of [How do you automate the installation of Eclipse plugins with command line?](http://stackoverflow.com/questions/7163970/how-do-you-automate-the-installation-of-eclipse-plugins-with-command-line) – Ciro Santilli OurBigBook.com Apr 01 '14 at 13:19
  • Decent write-up with screenshots here: http://www.lorenzobettini.it/2012/10/installing-eclipse-features-via-the-command-line/ – Miron Veryanskiy Dec 10 '18 at 19:59

1 Answers1

10

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.

Eugene Kuleshov
  • 31,461
  • 5
  • 66
  • 67