Installing plugin into eclipse using command line

后端 未结 1 1339
别跟我提以往
别跟我提以往 2021-02-14 13:19

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

相关标签:
1条回答
  • 2021-02-14 13:51

    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.

    0 讨论(0)
提交回复
热议问题