how to execute 2 goals of one maven-plugin in a define order

2009-07-25 Thread Nicolas Dordet
Hi all, I've got a maven plugin which have 2 mojo that extends AbstractMavenReport. I need to execute mojo-1 before mojo-2. When I'm doing a mvn clean install on the plugin, then a mvn site on a test project, sometimes mojo-1 is executed before mojo-2, sometimes its the contrary.. How can I specif

Re: maven-archetype-plugin does not exist error when creating new project, non-working link in FAQ

2009-01-12 Thread Nicolas Dordet
Final Memory: 1M/4M > [INFO] > ------------ > > > Yes, I use a proxy: httpproxy.rmg.be > > Do you know anything more with this? > > > > -Original Message- > From: Nicolas Dordet [mailto:dorde...@

Re: maven-archetype-plugin does not exist error when creating new project, non-working link in FAQ

2009-01-12 Thread Nicolas Dordet
No problem for me to lauch this goal (mvn archetype:create -DgroupId=com.roularta.app -DartifactId=my-app -e) on maven 2.0.9. But first of all, maven say : "This goal is deprecated. Please use mvn archetype:generate instead" Are you using a proxy? 2009/1/12 > Hello, > > When I try to create a

Re: Mojo's order execution in a plugin

2008-12-01 Thread Nicolas Dordet
second mojo need files generated by the first one. But the 2 mojo's have to give me a report at the end witch I want to have in the report section of the maven's generated site. Maybe I should revise my architecture... Thx anyway > Nico > > - Brett > > > On 0

Mojo's order execution in a plugin

2008-12-01 Thread Nicolas Dordet
Hi all, I'm developing a maven plugin witch contain 2 mojos (abstractMavenReport). I wanted maven to execute mojoA before mojoB when doing a "mvn site". I saw that in the plugin descriptor my mojoB is declared before my mojoA. How can I change that? Is there a way to change the plugin.xml manuall

maven, eclipse, wtp 1.5.5 and deep project structures

2008-10-14 Thread Nicolas Dordet
Hi, I read that maven-eclipse-plugin accept the deep project structures provided by maven. I'm using wtp 1.5.5 and I want to know if I can organize my folder that way ? ( the exemple http://maven.apache.org/plugins/maven-eclipse-plugin/examples/multi-module-projects.htmlsay it using WTP 2.0 but I

interdependent plugin

2008-07-07 Thread Nicolas Dordet
Hi, I'm makin a mvn2 plugin, and I need to call an other one in some cases and use it in the project witch is calling my plugin. My plugin check if in a maven project the maven-checkstyle-plugin is declared in the pom. If yes, my plugin didn't do anything. If no, I want my plugin to run the mave