我有一个由多个功能和插件组成的项目,我想导出使用PDE Build构建的项目源。
其中一个原因是我们有一个大型的通用插件Subversion存储库,用于所有项目通用的插件,在构建之前检出(整个公共中继。问题是一些常见的插件可能实际上并没有包含在构建中,所以如果我只是从存储库中检出所有已插入的插件,我可能会获得不在实际构建中的插件。
有没有办法告诉PDE Build在构建插件时导出源?
答案 0 :(得分:0)
对于每个插件,你可以编辑build.properties文件......它应该包含在你的项目文件夹中:(你也可以简单地双击plugin.xml文件):
然后你必须在源代码上制作复选框并在你的构建中包含所有内容......
请记住:build.properties文件将由pde-build使用!
您可能还想将这些行添加到build.properties文件中(构建的构建文件,而不是插件)
############## SOURCE BUNDLE CONTROL ################
# Set this property to have source bundles created and output into build repository.
# This does NOT put them in the build output (e.g., product) itself.
# Valid values are: not set, built, all.
# built = only source for bundles that are actually built/compiled in this run are output
# all = all available source is collected and output
sourceBundleMode=all
individualSourceBundles=true