RE: Newbie question on ANT script error in the build.xml file in the Eclipse project

2011-02-23 Thread Savoy, Melinda
Thank you. I appreciate the quick reply and your help. Regards. -Original Message- From: Alexandre Priou [mailto:apr...@gmail.com] Sent: Wednesday, February 23, 2011 2:33 PM To: Ant Users List Subject: Re: Newbie question on ANT script error in the build.xml file in the Eclipse project

Re: Newbie question on ANT script error in the build.xml file in the Eclipse project

2011-02-23 Thread Alexandre Priou
Hi you haven't declared that : in your build.xml in your target , you have declared : default="dist", ant search this target if you execute your project. best regard -- Alexandre Priou Analyste Concepteur Web chez HR TEAM Détaché aux éditions la rivière 64 rue de l'Essonne 91000 Évry O

Newbie question on ANT script error in the build.xml file in the Eclipse project

2011-02-23 Thread Savoy, Melinda
Currently I am working on my local XP box in Eclipse Helios. The version of ANT that I have loaded is apache-ant-1.8.2 The error I am getting in the build.xml file is: Default target dist does not exist in this project However, when I go to the Eclipse workspace where I have my project: C:\

Re: log4j seems not read by ant

2011-02-23 Thread Thomas Anderson
Ok. I know what goes wrong now. For debug log4j with ant, it is jvmarg instead of arg needed to be added within java tag. log4j.properties is not read because there is another project which also uses log4j logging system that I was not aware of. And that classpath property is

log4j seems not read by ant

2011-02-23 Thread Thomas Anderson
I have a build.xml file which will read log4j.properties, stored in conf, from conf and log message to another dir e.g. logs/file.log My build file's classpath points to conf and then when launch the application it will have classpath provided. ... ... And in ta