我有一个基于插件的产品文件,使用:
我认为这些插件来自于E(Fx)启示录项目。
我正在尝试构建一个目标文件,提供这些插件( maven+tycho构建将是我的下一步)。我想我可以在这个p2更新站点上找到它们:
http://download.eclipse.org/efxclipse/updates-released/1.0.0/site
我的目标文件如下所示:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?><target name="my_target" sequenceNumber="1">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.fx.javafx" version="2.2.0.201408150502"/>
<unit id="org.eclipse.fx.osgi" version="1.0.0.201408150502"/>
<repository location="http://download.eclipse.org/efxclipse/updates-released/1.0.0/site"/>
</location>
</locations>
</target>但是我得到了一个错误:“无法找到可安装的单元org.eclipse.fx.javafx”。

如果我编辑位置,我可以选择其中一个项目:

对于每晚更新的站点,我也有相同的行为:
http://download.eclipse.org/efxclipse/updates-nightly/site
发布于 2014-12-11 23:21:15
您不应该使用此更新站点来设置目标平台!在创建目标平台时使用http://download.eclipse.org/efxclipse/runtime-shared-released/1.1.0/site。

。
目标文件的XML内容如下所示:
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.fx.runtime.min.feature.feature.group" version="1.1.0.201411050602"/>
<repository location="http://download.eclipse.org/efxclipse/runtime-shared-released/1.1.0/site/"/>
</location>内容最少的特性在这里描述:通过特殊特性更容易地使用运行时。
发布于 2014-12-11 14:47:58
这里有org.eclipse.fx.* http://download.eclipse.org/efxclipse/updates-nightly/site
如果有问题,可以在zip:assembly.zip中下载
https://stackoverflow.com/questions/27424599
复制相似问题