Eclipse 3.4 Ganymede 新增的插件安装方式
以前安装Eclipse插件无非两种方式,
直接copy插件到features/plugins目录或者在links目录下创建链接文件. 刚刚发布的Eclipse
3.4又推出另一种新的安装途径, 称为provisioning platform(p2), 更加灵活.
Eclipse 3.4下有个dropins目录, 只要把插件放到该目录下就可以加载, 有几种格式可以选择.
1. 最简单的:
eclipse/dropins/
org.eclipse.core.tools_1.4.0.200710121455.jar
org.eclipse.releng.tools_3.3.0.v20070412/
plugin.xml
tools.jar
... etc ...
...
2. 传统格式:
eclipse/dropins/eclipse/features/
eclipse/dropins/eclipse/plugins/
3. 按照插件名称区分:
eclipse/dropins/emf/eclipse/features/
eclipse/dropins/emf/eclipse/plugins/
eclipse/dropins/gef/eclipse/features/
eclipse/dropins/gef/eclipse/plugins/
... etc ...
4. 类似links方式添加链接:
eclipse/dropins/emf.link
以上几种可以根据个人喜欢随意选择.