[ http://jira.codehaus.org/browse/MPLUGIN-55?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Brett Porter moved MNG-1347 to MPLUGIN-55: ------------------------------------------ Affects Version/s: (was: 2.0) Fix Version/s: (was: 2.x) Component/s: (was: Plugin Creation Tools) Key: MPLUGIN-55 (was: MNG-1347) Project: Maven 2.x Plugin Tools (was: Maven 2) > Maven (plexus?) doesn't recognize Mojo parameter setters defined in a base > class > -------------------------------------------------------------------------------- > > Key: MPLUGIN-55 > URL: http://jira.codehaus.org/browse/MPLUGIN-55 > Project: Maven 2.x Plugin Tools > Issue Type: Improvement > Reporter: David Jackman > Priority: Minor > > Create a Mojo class that extends some base class that itself defines a > parameter that uses a setter. Here's an example: > public class Base extends AbstractMojo > { > /** > * @parameter property="parameter" > */ > private String m_parameter; > public void setParameter(String parameter) > { > m_parameter = parameter; > } > ... > } > /** > * @goal mygoal > */ > public class MyMojo extends Base > { > ... > } > Maven can build the plugin just fine, but when I attempt to execute the goal, > I get an error: > org.codehaus.plexus.component.configurator.ComponentConfigurationException: > Cannot access method: com.example.MyMojo.setParameter( java.lang.Class ). > If I move the setter to the goal class, it works just fine. Maven (plexus?) > should be able to access the method from the base class. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira