我正在重构我的 RCP 应用程序,我将使用 tycho 作为构建系统。
在此过程中,我不得不重写我的目标平台以依赖在线存储库。目前,我的目标是:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.6"?>
<target name="MyRcpApp" sequenceNumber="12">
<locations>
<location includeAllPlatforms="false" includeMode="planner" includeSource="false" type="InstallableUnit">
<unit id="org.eclipse.rcp.feature.group" version="0.0.0"/>
<unit id="org.eclipse.equinox.executable.feature.group" version="0.0.0" />
<repository location="http://download.eclipse.org/releases/indigo/"/>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
</target>
但是,此目标不提供用于 junit 测试的包(org.junit)......因此我的 eclipse 有很多错误(由于缺少 junit)并且我的构建失败。
有人知道我应该包括哪个单元吗?(或者,更好的是,如何获取给定存储库中所有可用单元的列表?)