如何将文件添加到Eclipse RCP应用程序根目录(应用程序类型插件)?

时间:2015-03-03 15:11:10

标签: eclipse-rcp

我在官方文档和一些可以将文件添加到Eclipse RCP应用程序根目录的帖子中看到: http://help.eclipse.org/kepler/index.jsp?topic=/org.eclipse.pde.doc.user/tasks/pde_rootfiles.htmHow to add files to the root of an Eclipse RCP app?

不幸的是,我不能让它有效!我想分发一个文件“launcher.bat”,它必须在应用程序的根目录中。 一些信息 : - 我使用eclipse RCP 4(使用eclipse版本= kepler)。 - 我的项目配置基于插件

任何帮助?

提前致谢

克莱门特

1 个答案:

答案 0 :(得分:1)

您必须使用基于功能的构建。

' build.properties' 功能的文件包含根文件指令。例如

bin.includes = feature.xml
root=file:launcher.bat

' launcher.bat'要包含的文件将位于该功能的根文件夹中。

相关问题