On Tue, Apr 24, 2018 at 1:53 PM, Greg Allen <[email protected]> wrote: > I have created my own jelly control that I have placed in my maven project > at src/main/resources/lib/form/mycontrol.jelly.
The `/lib/form` namespace is reserved by Jenkins core and you may not use it for your own controls. Pick a different package structure corresponding to your plugin’s Java package scheme. To register it as a tag library, you need merely create an empty file (or contents irrelevant) `taglib` in the same directory: src/main/resources/io/jenkins/plugins/mystuff/form/taglib -- 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/CANfRfr1UJzbwDzDfHJ0PWvHvwjDarBraYFNbSrcLuU0QSK3JMQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
