The behaviour change was probably introduced with https://github.com/apache/maven/commit/1d148be82bcf3e16c01477d412f4f9206445a7aa#diff-16983b0795e70151790709d0d16ab0c9R103
Before we had: * Map<String, String> phaseToGoalMapping = null; Now it is: Map<String, LifecyclePhase> phaseToGoalMapping = null; The requirePluginVersions plugin casts the entry to a string, it probably should use String.valueOf or something. Regards Mirko -- http://illegalstateexception.blogspot.com/ https://github.com/mfriedenhagen/ (http://osrc.dfm.io/mfriedenhagen) https://bitbucket.org/mfriedenhagen/ On Sun, Jul 19, 2015 at 10:12 PM, Mirko Friedenhagen <[email protected]> wrote: > This seems to affect project which use <requirePluginVersions> as an > enforcer-rule. After inserting this rule into another project I get a > similar stack trace. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
