How can I find the path to a Jenkins plugin if I want to use it from a groovy script?
For example, just testing on the master, I'd like to be able to use the LabelParameterValue class from the NodeLabelParameter plugin. An example of what I'm looking for is below, (though it doesn't work).
currentParameters.add(new hudson.plugins.nodelabelparameter.LabelParameterValue(nodeName))
import org.jvnet.jenkins.plugins.nodelabelparameter.LabelParameterValue(taken from the package name on Github)