Re: Using Plugin Truncated Name

2014-01-07 Thread Baptiste Mathus
Hi Omar, Well, what Stephen advices *is* actually at least a part of the solution you're looking for. Stephen says you MUST NOT use the org.apache.maven.plugins and maven-yourplugin-plugin naming scheme because this is a naming strategy reserved for core maven plugins. See the first section of htt

Re: Using Plugin Truncated Name

2014-01-06 Thread Omar@Gmail
Thanks Stephen, What you suggest sounds like good practice (not sure why though) however not a fix for my issue. The fix is as follows: - somehow your response inspired me :) In the pom.xml file of the custom plugin there is a plugin configured maven-plugin-plugin in that plugin add configuratio

Re: Using Plugin Truncated Name

2014-01-06 Thread Stephen Connolly
On 6 January 2014 12:40, Omar@Gmail wrote: > I have written my own maven mojo plugin and wish to use the truncated name > instead of the long name to invoke it, like so: > > Instead of > mvn org.apache.maven.plugins:maven-pce-plugin:pull > > I want use: > > mvn pce:pull > > But even though I put

Using Plugin Truncated Name

2014-01-06 Thread Omar@Gmail
I have written my own maven mojo plugin and wish to use the truncated name instead of the long name to invoke it, like so: Instead of mvn org.apache.maven.plugins:maven-pce-plugin:pull I want use: mvn pce:pull But even though I put it under group 'org.apache.maven.plugins' and named it maven-pc