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

2023-12-26

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

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

有什么帮助吗?

提前致谢

Clément


您必须使用feature为此的基础构建。

的“build.properties”文件feature包含根文件指令。例如

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

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

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

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

随机推荐