在过去的几天里,我一直在尝试在无头的Debian VM上测试构建我的eclipse插件。无头Debian VM的原因是,一旦我进行了构建设置,构建和UpdateSite将托管在远程服务器上。 到目前为止我所取得的成就:
在我的开发框中使用完整的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 / with
java -jar ${path-to-eclipse/plugins}/org.eclipse.equinox.launcher_${version-string}.jar -initialize -application ...
但这根本不会给我任何输出。然后我尝试安装eclipse本身,它没有导致任何积极的结果,因为运行/ usr / bin / eclipse需要GTK和X.
所以我的问题是: 在无头模式下构建和发布eclipse插件的正确设置是什么样的?我需要什么插件?我需要下载哪些eclipse以及如何运行该过程?
答案 0 :(得分:0)
我正在构建我们的eclipse产品并使用ant和hudson更新站点。根据您的需要,任务看起来像这样:
<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>
您可以使用日食的P2 wiki page作为参考。
在我最初设置时,Tycho尚未准备好使用。几个星期前我再次尝试过,它运行得非常顺利,所以我建议尝试一下。