Re: basic maven lifecycle - howto always last?

2010-06-11 Thread Adam Hardy
Hi, thanks for the info - I think I might try the custom lifecycle approach if I continue suffering from the ill effects of not remembering where the profile is coming from (I think it must be my short term memory is going) Rgds Adam Anders Hammar on 10/06/10 11:48, wrote: Nope, not pos

Re: basic maven lifecycle - howto always last?

2010-06-10 Thread Anders Hammar
Nope, not possible. You can only bind to a specific phase and if you don't execute that phase you will not get the output. The only solution I can think of is some kind of script that executes maven twice, like this: mvn %1 mvn help:active-profiles /Anders On Thu, Jun 10, 2010 at 12:17, Adam Har

Re: basic maven lifecycle - howto always last?

2010-06-10 Thread Adam Hardy
I've changed my mind and want the active profile info to appear last, so that it's still visible on the console when mvn is finished. Is that possible? By looking at the lifecycle phases, it seems there is not a simple way to do it, since I might run any of compile, test, package or install.