Get Maven artifact properties from Jenkins plugin
问题 I have a Jenkins and a Sonar installation, for which I'm writing a Jenkins plugin that acts after any Maven project is built and asks Sonar for that specific project's metrics. For this, I'm trying to get the Maven groupId and artifactId from the Jenkins plugin and parametrize a Sonar web API request with them. I'm currently using the perform(AbstractBuild build, Launcher launcher, BuildListener listener) extension point, but I can't seem to find the relevant attributes in the build object. I