Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-15 Thread S. Ali Tokmen
Hi Andreas You are right - this makes a lot of sense. Shall I still raise a JIRA entry for this functionality; or is this close to impossible to implement? Thank you S. Ali Tokmen http://ali.tokmen.com/ My IM, GSM, PGP and other contact details are on http://contact.ali.tokmen.com On

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-15 Thread Anders Hammar
It doesn't work with the way Maven plugins currently are configured. But there will soon be discussions around a new version of the pom, so you could file a ticket to get this wish on the board. /Anders (mobile) Den 15 jan 2014 19:22 skrev S. Ali Tokmen nos...@alishomepage.com: Hi Andreas You

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-15 Thread Alejandro . Endo
:Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed Sent by:anders.g.ham...@gmail.com It doesn't work with the way Maven plugins currently are configured. But there will soon be discussions around a new version of the pom, so you could file a ticket

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-15 Thread S. Ali Tokmen
Hi Anders Great, sounds good. I've opened https://jira.codehaus.org/browse/MNG-5563 for it. Have a great day S. Ali Tokmen http://ali.tokmen.com/ My IM, GSM, PGP and other contact details are on http://contact.ali.tokmen.com On 15/01/14 20:48, Anders Hammar wrote: It doesn't work with the

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-14 Thread Baptiste Mathus
Hi, Stephen already answered along those lines. What are you missing? Cheers 2014/1/9 S. Ali Tokmen nos...@alishomepage.com Hi Anders Thanks for your reply - and happy new year :) Is there any way I can inject / read the whole plugin configuration from the plugin? Best regards S. Ali

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-14 Thread Thomas Broyer
Isn't that simply because the configuration is shared by all goals? (or all goals of the parent execution) On Tue, Jan 7, 2014 at 7:38 PM, S. Ali Tokmen nos...@alishomepage.comwrote: Dear Maven users I am one of the owners of Codehaus CARGO, which has a Maven2/Maven3 plugin; and would have

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-14 Thread S. Ali Tokmen
Hi Baptiste, Thomas I guess you all got a point :) The reason why I want to check the configuration is indeed something that would have to be done in each goal. My remaining question would be whether there is a way to read the configuration XML definition from the MOJO - I could then manually

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-14 Thread Anders Hammar
Don't think that's doable as the user could configure the params for different goals in the same configuration section (on plugin level, not execution level). /Anders On Tue, Jan 14, 2014 at 7:38 PM, S. Ali Tokmen nos...@alishomepage.comwrote: Hi Baptiste, Thomas I guess you all got a point

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-09 Thread S. Ali Tokmen
Hi Anders Thanks for your reply - and happy new year :) Is there any way I can inject / read the whole plugin configuration from the plugin? Best regards S. Ali Tokmen http://ali.tokmen.com/ My IM, GSM, PGP and other contact details are on http://contact.ali.tokmen.com On 08/01/14 20:00,

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-08 Thread Anders Hammar
AFAIK there is no support for this. If you think there should be, please file a ticket [1]. /Anders [1] http://jira.codehaus.org/browse/MNG/ On Tue, Jan 7, 2014 at 7:38 PM, S. Ali Tokmen nos...@alishomepage.comwrote: Dear Maven users I am one of the owners of Codehaus CARGO, which has a

Re: Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-08 Thread Stephen Connolly
There are valid reasons why a configuration having invalid elements may be valid. Consider the case where xpath:/project/build/pluginManagement/plugins/plugin/version specifies the *default* version and xpath:/project/build/plugins/plugin/version is absent... In this case

Maven2/Maven3 plugin development: Ensuring only the available parameters are allowed

2014-01-07 Thread S. Ali Tokmen
Dear Maven users I am one of the owners of Codehaus CARGO, which has a Maven2/Maven3 plugin; and would have a question with regards to how parameters are managed. We defined our MOJOs with parameters (you can see