@
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-pluginI 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 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.