本文介绍了在Eclipse RCP无头构建中使用customBuildCallbacks.xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我明白,推荐的方法是提供一个customBuildCallbacks。 xml文件在插件目录中,并在build.properties文件中添加一个链接。
#此属性集customb Build回调的位置
customBuildCallbacks = customBuildCallbacks.xml
然而,在构建期间过程中,这一步被忽略。
有没有一些设置步骤我可能会丢失?
解决方案
其实我发现这是唯一需要的东西....如果我们使用eclipse 3.3。这将无法使用Eclipse 3.1
I am trying to add some custom build steps to my headless build process for an Eclipse RCP application.
I understand that the recommended way is to provide a customBuildCallbacks.xml file on the plug-in directory, and adding a link to it in the build.properties file.
# This property sets the location of the customb Build callback
customBuildCallbacks = customBuildCallbacks.xml
However, during the build process, this step is ignored.
Is there some set-up step I might be missing?
解决方案
Actually, I found out that this is the only thing required.... if we are using eclipse 3.3. This will not work using Eclipse 3.1
这篇关于在Eclipse RCP无头构建中使用customBuildCallbacks.xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!