我正在构建一个产品(在 eclipse-repository 模块中),其中包含几个功能,这些功能通过 p2.inf 文件创建的可安装单元配置其插件。
只要我使用tycho-p2-director-plugintargetPlatform
的source
配置参数的默认值,它就可以工作。AFAIK 这使得导演可以从本地 Maven 存储库访问 p2 元数据和工件。<project_dir>/target/targetPlatformRepository/context.xml
由于我想修改一些捆绑包,我将source
参数更改为repository
. 这使得导演使用生成的存储库中的工件和元数据<project_dir>/target/repository
并破坏我的构建;-)
似乎通过 p2.inf 创建的可安装单元在<project_dir>/target/repository/content.jar
而<project_dir>/target/targetPlatformRepository/context.xml
完整的情况下丢失了。例如,以下单元仅包含在后者中:
<unit id='configure.org.sample.bundle' ...>
<!-- config -->
</unit>
如何将构建配置为也包含该可安装单元project/repository/content.jar
?
这是我的 p2.inf 文件的片段:
# org.sample.bundle
requires.0.namespace=org.eclipse.equinox.p2.iu
requires.0.name=configure.org.sample.bundle
requires.0.greedy=true
units.0.id=configure.org.sample.bundle
units.0.version=1.0.0
units.0.provides.1.namespace=org.eclipse.equinox.p2.iu
units.0.provides.1.name=configure.org.sample.bundle
units.0.provides.1.version=1.0.0
units.0.instructions.install=org.eclipse.equinox.p2.touchpoint.eclipse.installBundle(bundle:${artifact});
units.0.instructions.configure=org.eclipse.equinox.p2.touchpoint.eclipse.setStartLevel(startLevel:2); org.eclipse.equinox.p2.touchpoint.eclipse.markStarted(started:true);
units.0.hostRequirements.1.namespace=osgi.bundle
units.0.hostRequirements.1.name=org.sample.bundle
units.0.hostRequirements.1.greedy=false
units.0.hostRequirements.2.namespace=org.eclipse.equinox.p2.eclipse.type
units.0.hostRequirements.2.name=bundle
units.0.hostRequirements.2.range=[1.0.0,2.0.0)
units.0.hostRequirements.2.greedy=false
units.0.requires.1.namespace=osgi.bundle
units.0.requires.1.name=org.sample.bundle
units.0.requires.1.greedy=false
第谷构建的错误:
Cannot complete the install because one or more required items could not be found.
Software being installed: sample 1.0.0.201308060715 (sample.product 1.0.0.201308060715)
Missing requirement: Sample Feature 1.0.0.201308060715 (sample.feature.feature.group
1.0.0.201308060715) requires 'configure.org.sample.bundle 0.0.0' but it could not be found