On 08/31/2012 06:47 AM, altamash wrote:
I am developing a plugin that archives build information and the
reports that are generated by various plugins in database. Is there a
way to ensure that it runs after all plugins.
Thanks
You need to provide a small value for 'ordinal' at your extension
annotation: I'm using it to guarantee that the static analysis collector
plug-in (has annotation @Extension(ordinal = 1)) runs after the FindBugs
plugin (has annotation @Extension(ordinal=100.0)).
BTW: I'm not sure how this is affected by the new DnD publisher
reordering feature of Jenkins introduced recently...
Ulli