Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-dev] Resolving bundle artifact files in PDE

PDE developers,

I just released initial support for a flexible bundle root location within 
PDE projects (https://bugs.eclipse.org/bugs/show_bug.cgi?id=297895). With 
this change, it is now important to use the PDEProjectUtility class 
whenever resolving bundle files (manifest, build.properties, etc). I had 
to change a lot of code that did things like 
IProject.getFile("build.properties")... to use the new utility. I also had 
to change a lot of code that used file names as literal strings. From now 
on, we should always:

* use the file name/path constants in ICoreConstants
* use PDEProject to resolve manifest, build.properties, plugin.xml, 
feature.xml, etc.

Thanks,

Darin 


Back to the top