我最近开始在 Eclipse RCP (4.2.1 Juno) 上使用 Eclipse 的插件开发环境。我使用增量生成器模板创建了一个项目。我的目标是在 Java Build 结束后对用户代码执行构建过程。问题是,我不知道如何使用 Builder。我尝试将项目导出到“可部署的插件和片段”jar 文件中,然后将 jar 文件放置在多个位置,例如 Development Workspace、Runtime Workspace 以及 Development Eclipse 的 plugins 文件夹中。我将插件项目作为“Eclipse 应用程序”运行,运行时 Eclipse 出现,我创建了一个项目,并为该项目定义了一个构建器,并将导出的 jar 作为构建器文件,并将其作为工作目录,然后构建该项目并希望魔术发生!但是愚弄我...
Errors occurred during the build.
Errors running builder 'Integrated External Tool Builder' on project 'A'.
Exception occurred executing command line.
Cannot run program "<$Address>/Getter_1.0.0.201210200958.jar" (in directory "<$Address>"): error=13, Permission denied
Exception occurred executing command line.
Cannot run program "<$Address>Getter_1.0.0.201210200958.jar" (in directory "<Address>"): error=13, Permission denied
我认为这与我的插件的位置有关,但是除了运行时 eclipse 的 plugins 文件夹之外,我已经尝试过任何地方,因为我认为它与开发 eclipse 相同......有什么想法吗?