GDSL generation question

We use a fairly extensive shared library and have exported GDSL files into other projects that use the shared library. The GDSL’s aren’t full accurate though. We have quite a few functions (a single call() in the var folder) but they’re only ever exported as property(name: '<funcName>', type: 'org.jenkinsci.plugins.workflow.cps.global.UserDefinedGlobalVariable'), instead of method(name: '<funcName>', properties: []). Is there specific Javadoc or other documentation that needs to be added to get them to correctly show up as method() in the GDSL?

Unfortunately, the code that generates this file is your limiting factor. You’d have to get this plugin updated to actually dig into the global vars to pull out functional details.

Ahh, bummer. Thank you for the response!