how can I use an ANT task inside my maven.xml

2004-11-04 Thread Feilpe Vieira Silva
Dear members, I have an ANT build.xml files, with several well tested tasks and now I´m trying to migrate to maven. can I just copy these tasks inside of the maven.xml? and how can I call them? if not, what I must do instead? regards, Felipe Gaúcho Schoolbus owner

RE: how can I use an ANT task inside my maven.xml

2004-11-04 Thread Haile, Mussie
=runtest/ /goal /project -Original Message- From: Feilpe Vieira Silva [mailto:[EMAIL PROTECTED] Sent: Thursday, November 04, 2004 1:07 PM To: [EMAIL PROTECTED] Subject: how can I use an ANT task inside my maven.xml Dear members, I have an ANT build.xml files, with several well tested

Re: how can I use an ANT task inside my maven.xml

2004-11-04 Thread Eric Giguere
Hey Feilpe Yes, you can, as long as they are ant 1.5 compatible, no problem. I personnaly migrated a lot of Ant legacy code to a new maven.xml and it did workout nicely. Hope it helps. Eric. Feilpe Vieira Silva wrote: Dear members, I have an ANT build.xml files, with several well tested tasks

RE: how can I use an ANT task inside my maven.xml

2004-11-04 Thread Eric Pugh
use an ANT task inside my maven.xml Dear members, I have an ANT build.xml files, with several well tested tasks and now I´m trying to migrate to maven. can I just copy these tasks inside of the maven.xml? and how can I call them? if not, what I must do instead? regards, Felipe

Re: how can I use an ANT task inside my maven.xml

2004-11-04 Thread martin ruff
Hi Feilpe Using ant within maven is relly simple: for example: ant:copy todir=${maven.build.dir}/${project.id}/WEB-INF/classes ant:fileset dir=${dir.project}/src include name=**/*.xml / /ant:fileset /ant:copy just use the ant namespace prefix

Re: how can I use an ANT task inside my maven.xml

2004-11-04 Thread Feilpe Vieira Silva
Thank you all for the frindly support. The issue is about culture of my project members. My new project is growing up very quick and now we have several members expert in ANT and some members optimist about MAVEN (including me). I need arguments to convince these people about the gain in using