Re: [m2] Adding ANT task to Maven 2

2005-07-15 Thread Brett Porter
This is a good way to do it. If you are looking to cut and paste the ant tasks, you might like to write the plugins in Marmalade, or use the AntRun plugin if the number of tasks is -very small- (though it could be to farm it out to a larger ant script using the task). - Brett On 7/14/05, Peter v

Re: [m2] Adding ANT task to Maven 2

2005-07-13 Thread Peter van de Hoef
Hi Vitaliy, You can add the Ant jars as dependency in your plugin's POM, like: ant ant 1.6.2 ant ant-launcher 1.6.2 ... etc, depending on the Ant functional

[m2] Adding ANT task to Maven 2

2005-07-12 Thread Vitaliy Geraymovych
I am in the process of moving Ant scripts to Maven2. I am looking for an example of how to invoke ant task within a specific phase of m2. My goal for now is to invoke our custom ant targets and than later on replace them one by one with maven plugins. Thanks, Vitaliy