Re: [m2] Calling goals outside a plugin

2006-07-23 Thread hibikijoji
I understand what you're saying. At the moment, I do not want to bind the ant plugin to a build lifecycle. I want the plugin to be a standalone execution. For instance, in prompt i want to do this: mvn foo:bar ... [INFO] [clean:clean] ... [INFO] [goal1:goal1] ... [INFO] [goal2:goal2] ... [INFO]

[m2] Calling goals outside a plugin

2006-07-20 Thread hibikijoji
To all, I am currently migrating from the Maven 1 to the Maven 2 build system. Here's the scenario: In maven 1, I have goals in maven.xml that has a prereq attribute. For argument's sake, let's say its: goal name=foo:bar prereqs=clean, goal1, goal2 !-- insert some ant script code