我有一个插件,我想与我的 Eclipse IDE 集成。我从网上下载的插件由两个jar文件组成,分别是:
org.eclipse.dg.ex.core_1.0.jar
org.eclipse.dg.ex.ui_1.0.jar
如何让它们进入我的 IDE?我尝试将它们放在 Eclipsedropins
文件夹中,但我认为这可能不正确。
有人可以帮忙吗?
我有一个插件,我想与我的 Eclipse IDE 集成。我从网上下载的插件由两个jar文件组成,分别是:
org.eclipse.dg.ex.core_1.0.jar
org.eclipse.dg.ex.ui_1.0.jar
如何让它们进入我的 IDE?我尝试将它们放在 Eclipsedropins
文件夹中,但我认为这可能不正确。
有人可以帮忙吗?
把插件放在dropins
目录下是正确的!它不属于插件目录。自从p2
被添加到 Eclipse 之后,dropins 目录被引入作为通过通用文件系统操作安装新插件的一种方式
The dropins folder is configured to be scanned during startup. Thus the dropins folder can be used
much like the plugins directory was used in the past.
这dropins
是有关该文件夹的一些信息。这还包括插件的有效布局,该插件位于dropins
. 看一看。您很可能只需要正确“布局”插件。
The definitely belong in the eclipse/plugins folder. You will likely need to restart eclipse as well.