2

我正在寻找一种使用 ant 导出 Eclipse RCP 产品的方法,但我找不到实现这一目标的直接方法(当然在搜索网络和我们的论坛之后)。

我发现与我的问题更相关的链接是“http://stackoverflow.com/questions/9098378/how-to-build-eclipse-rcp-application-from-product-with-ant-on-jenkins”但这并没有说明蚂蚁的用法。还有一个指南“http://www.vogella.com/articles/EclipsePDEBuild/article.html”,但即使在尝试之后,我也无法成功使用 Ant ni 导出 Eclipse 产品。

任何帮助/指针将不胜感激。

4

1 回答 1

2

您想要http://www.vogella.com/articles/EclipsePDEBuild/article.html中列出的 PDE 构建(基于 ant)。那是正确的地方,它对您的设置没有什么作用?

有关基本 RCP 产品构建的示例,另请参见http://pweclipse.blogspot.com/2010/09/simple-rcp-product-build.html 。虽然它是基于 ant 的,但您仍然必须使用 eclipse 来运行它:

eclipse/eclipse -application org.eclipse.ant.core.antRunner \
 -buildfile eclipse/plugins/org.eclipse.pde.build_3.6.0.v20100603/scripts/productBuild/productBuild.xml \
 -Dbuilder=/opt/local/rcp/builder  \
 -Dbase=/opt/local/rcp/base \
 -Dtimestamp=20100924-1100
于 2012-06-20T11:42:18.087 回答