按照这篇文章中的教程,我可以生成在 Eclipse IDE 中工作的无头 Eclipse 插件。
按照Paul 的建议,我尝试创建一个.product
文件并将其导出。
事先,我需要进行产品配置,我按照本网站的说明进行操作 - http://wiki.eclipse.org/FAQ_How_do_I_create_an_Eclipse_product%3F
这是productConfiguration.product
自动生成的。
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>
<product useFeatures="false" includeLaunchers="true">
<configIni use="default">
</configIni>
<launcherArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
</launcherArgs>
<plugins>
</plugins>
</product>
我跟着向导:
但是,我收到此错误消息。我试过没有Synchronize before exporting
,我得到了另一个错误。
可能有什么问题?