You can use the fully-specified syntax for executing a goal, eg. "mvn
<groupId>:<artifactId>:<version>:<goal>"
When using the short form of specifying a goal, maven, by default, only
searches two groupIds: org.apache.maven.plugins and org.codehaus.mojo. Odds
are the maven-evo-plugin is not in either of these groups and that's why she
doesn't find the evo plugin.
You can modify the groupIds maven searches when using the short form by
adding the following to your settings.xml:
<pluginGroups>
<pluginGroup>some.groupId</pluginGroup>
<pluginGroup>some.other.groupId</pluginGroup>
</pluginGroups>
HTH,
Doug
On 8/23/06, Eric Redmond <[EMAIL PROTECTED]> wrote:
You can look at the details of a plugin with:
mvn help:describe -DgroupId=? -DartifactId=? -Dfull
http://maven.apache.org/plugins/maven-help-plugin/describe-mojo.html
Eric
On 8/23/06, john_sh <[EMAIL PROTECTED]> wrote:
>
>
> hello
>
> i am going to upload a par file to workflow portlet in exo platform and
i
> have problem in building one with maven. i am using maven2, when i type
> mvn
> exo:bp from maven bin directory to create a par file from existing
> business
> brocess in exo source, maven does not automaticly download
> maven-exo-plugin
> and says that 'maven-exo-plugin' does not exist or no valid version
could
> be
> found,(although it downloads other necessary jar files when i executed
> other
> command like:"install") so i downloaded the necessary jar and pom files
> from
> http://maven.objectweb.org/maven2/... manualy and placed them in
> appropriate
> files in repository. the next time i executed mvn exo:bp command the
error
> message changed to "required goal not found: exo:bp"
>
> what does maven mean by "goal not found" is it the plugin problem? where
> are
> maven goals defined? or is it possible to make par files in eclipse by
the
> help of eclipse-maven-plugin?
>
> i am using exo v.1.0 and maven2
>
> i appreciate any help.
> --
> View this message in context:
> http://www.nabble.com/goal-not-found-error-tf2152081.html#a5943329
> Sent from the Maven - Users forum at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Eric Redmond
http://codehaus.org/~eredmond