@Baptiste Mathus I really don't know, outside of the plugin i am working on, i don't use any Build Plugins. Maybe you can point me in the right direction? I just need some simple that adds a Build Step and that Build step does something but also uses values set in the Admin Configurations.
My plugin is: https://github.com/jenkinsci/zap-plugin I am trying to trace a serialization error. I'll be more than happy to make a list for how documentation can be improved. I found a few dead links or unfinished tutorials that are being linked as developer guides which makes it rather hard to learn. Thanks for the feedback :) @Daniel Beck Those helped me a great deal when i was learning :) The documentation around jelly is somewhat sparse. Example of my current code. <f:entry title="${%Title}" field="exportreportTitle"> <f:textbox /> </f:entry> and i want to change this to: <f:entry> <table width="100%"> <tr> <td>${%Title}</td> <td><f:textbox field="exportreportTitle"/></td> </tr> </table> </f:entry> from my understand of jelly, this should be an acceptable change but it's not. It throws NPE exceptions on unrelated boolean (Not Boolean) values. See this post <https://groups.google.com/forum/#!topic/jenkinsci-dev/acAcP0XNooo>if interested. So i'm trying to figure out what i'm doing wrong, even if i remove the plugin or rename it, it still breaks. So it doesn't make me believe it's a backwards compatibility issue. I thought maybe it was because i suppressed warnings and errors, so i spent 3 hours fixing all of them and i still can't make this simple change. Thanks for your help, much appreciated. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/e4f3fb46-85d8-49e0-8348-8e56ee4e95ff%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
