Re: Detecting current phase in a plugin

2012-01-03 Thread Jochen Wiedmann
Sure you really want to do that? It would amount to hard wiring your plugin to a certain phase, whereas a plugin should typically be able to run in any phase, depending on the POM. On Tue, Jan 3, 2012 at 5:21 AM, Carson Gross carsongr...@gmail.com wrote: I'd like to detect the current phase of

Re: Detecting current phase in a plugin

2012-01-03 Thread Carson Gross
Yes, it appears that I have a different mental model for plugins than Maven provides. Let me explain what I'm trying to accomplish, and perhaps a better high-level approach is available: I work on Gosu (http://gosu-lang.org) a small language for the JVM. Me and a few other guys are trying to

Re: Detecting current phase in a plugin

2012-01-03 Thread Vincent Latombe
Hello Carson, you can achieve what you need by defining a new packaging, as described in http://www.sonatype.com/people/2009/08/create-a-customized-build-process-in-maven/ Vincent 2012/1/3 Carson Gross carsongr...@gmail.com Yes, it appears that I have a different mental model for plugins

Re: Detecting current phase in a plugin

2012-01-03 Thread Manfred Moser
For a full working example mapping Maven to a different life cycle with a whole bunch of different tasks look at the code of the android maven plugin.. manfred On 12-01-03 08:43 AM, Vincent Latombe wrote: Hello Carson, you can achieve what you need by defining a new packaging, as described

Re: Detecting current phase in a plugin

2012-01-03 Thread Carson Gross
Will do, thanks for the references Manfred and Vincent! Cheers, Carson On Tue, Jan 3, 2012 at 9:11 AM, Manfred Moser manf...@mosabuam.com wrote: For a full working example mapping Maven to a different life cycle with a whole bunch of different tasks look at the code of the android maven

Detecting current phase in a plugin

2012-01-02 Thread Carson Gross
I'd like to detect the current phase of a build within a plugin's execute() method. I dug around in the project object and plugin context, but couldn't find it. Can anyone point me the right direction? Cheers, Carson

Re: Detecting current phase in a plugin

2012-01-02 Thread Brett Porter
It's not possible, but depending on what you want to do there might be other ways to achieve it. Take a look at: http://stackoverflow.com/questions/3746585/determining-maven-execution-phase-within-a-plugin On 03/01/2012, at 3:21 PM, Carson Gross wrote: I'd like to detect the current phase of