You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Mattias Olofsson <ma...@xdin.com> on 2006/01/03 13:33:40 UTC

M2 plugins

 
I have some questions about maven2 plugins.  
   
  
* How could I see the last versions of all plugins?   
* Is there any plans to make a page for maven2 like maven1, http://maven.apache.org/maven-1.x/reference/plugins/multichanges-report.html to list the releases ?   
* Why do I get these BUILD FAILURE when try to find plugins to update ?


  

C:\Documents and Settings\mattiaso\test>mvn -up  

[INFO] Scanning for projects...  

[INFO] Reactor build order:  

[INFO]   Unnamed - com.mycompany.app:app:pom:1.0-SNAPSHOT  

[INFO]   Maven Quick Start Archetype  

[INFO]   Maven Webapp Archetype  

[INFO]   Maven Quick Start Archetype  

[INFO] ----------------------------------------------------------------------------  

[ERROR] BUILD FAILURE  

[INFO] ----------------------------------------------------------------------------  

[INFO] You must specify at least one goal. Try 'install'  

[INFO] ----------------------------------------------------------------------------  

[INFO] For more information, run Maven with the -e switch  

[INFO] ----------------------------------------------------------------------------  

[INFO] Total time: < 1 second  

[INFO] Finished at: Sun Jan 01 13:19:34 CET 2006  

[INFO] Final Memory: 1M/3M  

[INFO] ----------------------------------------------------------------------------  
   
/ Mattias Olofsson

Re: M2 plugins

Posted by Brett Porter <br...@apache.org>.
Please direct your question to the users list in future.

Mattias Olofsson wrote:
>  
> I have some questions about maven2 plugins.  
>    
>   
> * How could I see the last versions of all plugins?   

http://repo1.maven.org/maven2/org/apache/maven/plugins
http://repo1.maven.org/maven2/org/codehaus/mojo
and so on

> * Is there any plans to make a page for maven2 like maven1, http://maven.apache.org/maven-1.x/reference/plugins/multichanges-report.html to list the releases ?   

It will be done by a repository application.

> * Why do I get these BUILD FAILURE when try to find plugins to update ?

the -U flag is not used to updated everything (Maven has no way to find
every available plugin). You can use it as part of a normal run where
the plugin will be used, eg:

mvn -U eclipse:eclipse

There will later be a goal for updating from the default groups, for
example:

mvn plugin:update (update from default search groups)
mvn plugin:update -Dgroups=com.mortbay.jetty

(this doesn't exist yet - looking for volunteers to implement it!)


- Brett

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