"Amshoff Christoph, Köln" wrote:
>
> Hi,
>
> I followed the "Guide to Developing Java Plugins" and performed the
> mentioned steps to compile and install the sample plugin. When executing,
> the command line "mvn sample.plugin:maven-hello-plugin:sayhi"
> is executed successfully.
>
> But when I try to "shorten the command line" like suggested in the guide,
> both of the following ways are failing:
>
> -- Maven will try expanding the artifactId: "mvn
> sample.plugin:hello:sayhi"
> is giving me the error "The plugin 'sample.plugin:hello' does not exist or
> no valid version could be found"
>
> -- Add your plugin's groupId to the list of groupIds searched by default
> in
> ${user.home}/.m2/settings.xml file: "mvn maven-hello-plugin:sayhi" is
> producing the error "The plugin
> 'org.apache.maven.plugins:maven-maven-hello-plugin-plugin' does not exist
> or
> no valid version could be found"
>
> What am I missing here? Is the Plugin Guide wrong? Are these ways of
> reducing command line only working with deployed plugins (I did only
> install
> it)? Any help is appreciated.
>
> Thanks,
> Christoph.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>-- Add your plugin's groupId to the list of groupIds searched by default in
>${user.home}/.m2/settings.xml file: "mvn maven-hello-plugin:sayhi" is
>producing the error "The plugin
>'org.apache.maven.plugins:maven-maven-hello-plugin-plugin' does not exist
or
>no valid version could be found"
Is this what you have in your settings.xml?
<pluginGroups>
<pluginGroup>sample.plugin</pluginGroup>
</pluginGroups>
--
View this message in context:
http://www.nabble.com/-m2--%22Shortening-the-Command-Line%22-when-executing-plugins-tf2176547.html#a6020063
Sent from the Maven - Users forum at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]