1

我正在开发一个 Eclipse RCP 应用程序(Eclipse 3.7 Indigo),其中包括一些基于 P2 的更新功能。

我定义了一个产品配置文件并使用 Eclipse 产品导出向导构建了产品,选择了“生成元数据存储库选项”,它运行良好(我能够正确运行构建的产品)。

我担心的是产品大小,因为构建目录包含:

  • 常用的工件(配置、jre、插件、特性等);

  • “存储库”目录(我移至更新站点位置)

  • 'p2' 目录,具有以下内容:

    p2
    |
    ----org.eclipse.equinox.p2.engine
    |
    ----org.eclipse.equinox.p2.core
    
        |
        ----cache
            |
            ----binary
                |
                ----Airetes_root.win32.win32.x86_0.8.0 (30 MB!)
    

(Airetes 是我的应用程序的临时名称)。

问题:有没有办法减小该文件的大小?

不明白它包含什么,我认为它需要包含在产品中,但它几乎使我的应用程序的大小增加了一倍......

我花了几个小时搜索,但我发现的文档非常有限且非结构化。

4

1 回答 1

1

This file is an zip file. Open it with a zipper and look inside. You can define the contents via root files. eclipse help on root files. Usually it should be really small < 1 MB, if you have no native/platform specific artifacts.

于 2013-10-30T09:49:14.707 回答