Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
[EMAIL PROTECTED] wrote: This can be be perfectly done by using the lifecycle of maven. In short, don't site:site, but call the phase site (thus mvn site instead of mvn site:site). Also, you could bind the assembly plugin to the package phase and thus run mvn package instead of mvn

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
This can be be perfectly done by using the lifecycle of maven. In short, don't site:site, but call the phase site (thus mvn site instead of mvn site:site). Also, you could bind the assembly plugin to the package phase and thus run mvn package instead of mvn assembly:assembly. Try reading this

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: This can be be perfectly done by using the lifecycle of maven. In short, don't site:site, but call the phase site (thus mvn site instead of mvn site:site). Also, you could bind the assembly plugin to the package phase

Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
at org.apache.maven.plugin.assembly.mojos.AbstractAssemblyMojo.execute(AbstractAssemblyMojo.java:261) -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 3:53 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: This can be be perfectly done by using

Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:09 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: Looking at your post again and I think I understand what you want to accomplish. You want to include inside the assembly

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
Please explain then what your intended result is, maybe I can help you better then. With regards, Nick Stolwijk -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:09 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
-site -Passembly Hth, Nick Stolwijk -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:30 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: Please explain then what your intended result is, maybe I

Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
be eincluded thx -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:30 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: Please explain then what your intended result is, maybe I can help you better

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
Yes, the reason is that It would call assembly even if I want just run site for upload to my space or just for my development verification if my site is really fine. It would be just some unnecessary overhead. To avoid this, use a profile for now. Hth, Nick Stolwijk

RE: How to make assembly:assembly depend on goals?

2008-01-15 Thread nicklist
reasons to not bind it to the post-site phase? -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:51 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: Ok, I'll understand what you want. Let's find

Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
[EMAIL PROTECTED] wrote: Yes, the reason is that It would call assembly even if I want just run site for upload to my space or just for my development verification if my site is really fine. It would be just some unnecessary overhead. To avoid this, use a profile for now. I guess I have to

Re: How to make assembly:assembly depend on goals?

2008-01-15 Thread Michael
unnecessary overhead. -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Tue 1/15/2008 4:51 PM To: Maven Users List Subject: Re: How to make assembly:assembly depend on goals? [EMAIL PROTECTED] wrote: Ok, I'll understand what you want. Let's find a solution. :) Try