Jenkins groovy MissingMethodException No signature of method
问题 I am facing getThingsDone() is applicable for argument types: () values: [] error for code as below, in shared library .... vars/pipeline.groovy def getThingsDone(m = null){ echo "done" } in some project that includes shared library @Library(shared_pipeline@branch_name) _ pipeline.getThingsDone() I tried with defining getThingsDone(...) without any arguments with string arguments with Map arguments Nothing works. So I want to get a function that accepts no parameter(s) up and running. But it