[ http://jira.codehaus.org/browse/MNG-1347?page=comments#action_49719 ]
Brett Porter commented on MNG-1347: ----------------------------------- the problem seems to be looking for Class instead of String > Maven (plexus?) doesn't recognize Mojo parameter setters defined in a base > class > -------------------------------------------------------------------------------- > > Key: MNG-1347 > URL: http://jira.codehaus.org/browse/MNG-1347 > Project: Maven 2 > Type: Improvement > Versions: 2.0 > 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 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
