使用命令行将插件安装到Eclipse中

使用命令行将插件安装到Eclipse中

本文介绍了使用命令行将插件安装到Eclipse中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个更新站点,并找到了包含功能部件和插件的目录

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

如何使用命令行在Eclipse应用程序中安装插件?我想自动化这个过程

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

推荐答案

您可以调用,其用法如下:

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

这里也链接到 p2 Wiki .

这篇关于使用命令行将插件安装到Eclipse中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 23:00