cjo9900 commented on Bug JENKINS-15977

Do you have the Maven plugin installed/enabled?
As this copy artifact plugin depends on it, during compile time but there is no checking at runtime to see if it is installed before using it.

as indicated in
https://wiki.jenkins-ci.org/display/JENKINS/Dependencies+among+plugins

so code needs to be added to do the check for the plugin before use

if (Hudson.getInstance().getPlugin("maven-plugin") != null) { // use classes in the "maven-plugin" plugin }

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to