Herve Boutemy created MPLUGIN-259: ------------------------------------- Summary: @Parameter name="xxx" to set bean property name different from class' field Key: MPLUGIN-259 URL: https://jira.codehaus.org/browse/MPLUGIN-259 Project: Maven Plugin Tools Issue Type: New Feature Components: maven-plugin-tools-annotations, maven-plugin-tools-javadoc Affects Versions: 3.2, 3.0 Reporter: Herve Boutemy
feature existed in version 2.9 as {code}/** * @parameter property="beanPropertyName" */ private String fieldName;{code} but was removed in MPLUGIN-199 to reuse the "property" definition with different meaning (see MPLUGIN-196) could be reintroduced both as javadoc annotation: {code}/** * @parameter name="beanPropertyName" */ private String fieldName;{code} and java 5 annotation: {code}@Parameter name="beanPropertyName" private String fieldName;{code} -- This message was sent by Atlassian JIRA (v6.1.6#6162)