|
||||||||
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 |
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The maven tests were using the version defined in pom.xml, parent element which is 1.481.
I changed it to 1.609 and it failed to compile until I added matrix-project v1.4.1 as a dependency and updated the versions of the dashboard to 2.9.4 and promoted plugins to 2.21. (since jenkins version 1.561, matrix-project split into it's own plugin). Once I changed the POM to use the latest versions the tests passsed.
It looks like the matrix-project is a required dependency for the plugin to run, but it wasn't included as a requirement in the .hpi, so if for some reason it's not in the Jenkins Environment(it should be included in the jenkins.war), it could be causing the plugin to not work if installed on a jenkins version > 1.561 that doesn't include it.
I created a new branch https://github.com/glenritchie/release-plugin/tree/JENKINS-27722-1609 with the modified pom.xml, see if that helps.