Hi I have a plugin that extends the "Notifier" class to create a post-build plugin. The problem is that once I create a post-build action using that plugin, it is disabled after that. I would like to have many instances of the same plugin for the same job. I looked around the Jenkins source and it looks like the configure-publishers2.jelly contains a hetero-list with an attribute called "oneEach=true", which then triggers a javascript to disable my post-build entry if its already selected.
Is it possible to override this setting somehow. I was trying to add my own configure-publishers2.jelly as part of the plugin but I guess thats loaded by a different classloader, and hence it doesnt even try to load my jelly file. Is there a way to override this behaviour of having more than one instance of post-build action per job? Thanks Raja