Hi Hervé,

Hi,

You'd better not use the @Component annotation but @Parameter instead: this is
a feature that will be deprecated in future version:

http://jira.codehaus.org/browse/MPLUGIN-257

Thanks for the hint learnt already (via IRC) the right way via @Parameter ...

But according to the JIRA ticket it sounds like the wise way is to change the following:


    @Component
    private MavenSession mavenSession;


into this (as mentioned in the JIRA ticket):

@Parameter( defaultValue="${session}", readonly=true )
private MavenSession session;


Thanks...

Kind regards
Karl Heinz



Regards,

Hervé

Le jeudi 6 février 2014 22:04:57 Karl Heinz Marbaise a écrit :
Hi,

in the meantime i found a better way (thanks to Robert Scholte):

      @Component
      private MojoExecution mojoExecution;


      mojoExecution.getExecutionId();
      mojoExecution.getConfiguration();

Kind regards
Karl Heinz Marbaise

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org




Mit freundlichem Gruß
Karl-Heinz Marbaise
--
SoftwareEntwicklung Beratung Schulung    Tel.: +49 (0) 2405 / 415 893
Dipl.Ing.(FH) Karl-Heinz Marbaise        ICQ#: 135949029
Hauptstrasse 177                         USt.IdNr: DE191347579
52146 Würselen                           http://www.soebes.de

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to