[ https://issues.apache.org/jira/browse/MSOURCES-71?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17959441#comment-17959441 ]
Matthias Bünger commented on MSOURCES-71: ----------------------------------------- This project has moved from Jira to GitHub Issues. This issue was migrated to [apache/maven-source-plugin#144|https://github.com/apache/maven-source-plugin/issues/144]. > MavenProject/MavenSession Injection as a paremeter instead as a component. > -------------------------------------------------------------------------- > > Key: MSOURCES-71 > URL: https://issues.apache.org/jira/browse/MSOURCES-71 > Project: Maven Source Plugin (Moved to GitHub Issues) > Issue Type: Improvement > Affects Versions: 3.0.0 > Reporter: Karl Heinz Marbaise > Assignee: Karl Heinz Marbaise > Priority: Minor > Fix For: 2.4 > > > The following: > {code:java} > @Component > protected MavenProject project; > {code} > has to be replaced by the following: > {code:java} > @Parameter( defaultValue = "${project}", readonly = true, required = true ) > protected MavenProject project; > {code} > The following: > {code:java} > @Component > private MavenSession session; > {code} > has to be replaced by the following: > {code:java} > @Parameter( defaultValue = "${session}", readonly = true, required = true ) > private MavenSession session; > {code} > The following: > {code:java} > @Component > private Settings settings; > {code} > has to be replaced by the following: > {code:java} > @Parameter( defaultValue = "${settings}", readonly = true, required = true ) > private Settings settings; > {code} > Reference: > http://maven.apache.org/ref/3.1.1/maven-core/apidocs/org/apache/maven/plugin/PluginParameterExpressionEvaluator.html -- This message was sent by Atlassian Jira (v8.20.10#820010)