7

在过去的几天里,我一直在尝试在无头 Debian VM 上测试构建我的 eclipse 插件。无头 Debian VM 的原因是,一旦我进行了构建设置,构建和 UpdateSite 将托管在远程服务器上。到目前为止我所取得的成就:

  • 构建插件本身(${Projectname}-${version}.jar)
  • 构建功能 (${Prohjectname}_Feature_${version}.jar)
  • 将功能和插件以及 site.xml 移动到带有 ./features 和 ./plugins 的文件夹 ${structured-folder}

在带有完整 Ubuntu 的开发盒上,我可以在 CLI 上运行以下命令来构建所需的 content.jar 和 artifacts.jar:

/usr/bin/eclipse -application org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher -metadaRepository file:${folder-to-repo} -artifactRepository file:${folder-to-repo} -source ${structured-folder} -publishArtifacts -compress

在我的无头构建中,我尝试用“/usr/bin/eclipse/”替换

java -jar ${path-to-eclipse/plugins}/org.eclipse.equinox.launcher_${version-string}.jar -initialize -application ...

但这根本没有给我任何输出。然后我尝试安装 eclipse 本身,它没有带来任何积极的结果,因为运行 /usr/bin/eclipse 需要 GTK 和 X。

所以我的问题是:在无头模式下构建和发布 Eclipse 插件的正确设置是什么样的?我需要什么插件?我需要下载哪些 Eclipse 以及我应该如何运行该过程?

4

1 回答 1

0

我正在使用 ant 和 hudson 构建我们的 eclipse 产品和更新站点。根据您的需要,任务将如下所示:

<java jar="${eclipse.build.launcher}" fork="true" failonerror="true">
    <arg value="-application" />
    <arg value="org.eclipse.ant.core.antRunner" />
    <arg value="-buildfile" />
    <arg file="${basedir}/process_artifacts.xml" />
    <jvmarg value="-Dp2.repo=${repository}" />
</java>

您可以使用 Eclipse 的P2 wiki 页面作为参考。

在我最初设置它的时候,Tycho还没有准备好使用。几周前我又试了一次,结果非常顺利,所以我建议试一试。

于 2011-04-15T10:51:18.043 回答