Padmaja Kunapareddy/Lexington/IBM is out of the office.

2006-06-30 Thread Padmaja Kunapareddy
I will be out of the office starting 06/30/2006 and will not return until 07/10/2006. For CQ Baltic iFix01, please contact Edward L Hayes - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: FixCRLF task: Does it work?

2006-06-30 Thread Antoine Levy-Lambert
Hello Alex, I have no clue concerning this. If you enter your problem as a bug report on bugzilla, maybe one of us ant committers will have a look at it. In this case be sure to attach a source file allowing to reproduce the problem. Regards, Antoine Original-Nachricht Datum

Re: Help with this build.xml

2006-06-30 Thread Antoine Levy-Lambert
Hello Chun Ji, you should look at the manual http://ant.apache.org/manual/CoreTasks/javac.html the 4th, 5th and 6th examples show how the XML tags to compile should look like. instead of this : use this Regards, Antoine Original-Nachricht Datum: Fri, 30 Jun 2006 11:17:0

RE: Help with this build.xml

2006-06-30 Thread prashanth . l
the below reply also works.. otherwise If i am getting you correct.. Do it this way.. For different modules use the above, & call the target name in order you wish.. "Res Pons" <[EMAIL PROTECTED]> 06/30/2006 11:55 PM Please respond to "Ant Users Li

RE: Help with this build.xml

2006-06-30 Thread Res Pons
in if those are classes then they shoule be in the form of com.manager.* instead of slashes. if they're directories relative to your project/wroking folder then they need to be more complete than just more like Original Message Follows From: "Chun Ji" <[EMAIL PROTECT

Help with this build.xml

2006-06-30 Thread Chun Ji
Question: I want to put some files in a fileset, so that I can build them one by one, such as ... but somehow in ant, "Javac" does not acccept this "", do you know a way to work arond. cj -Original Message- From: Dominique De

Re: help to compile c / c++ files in ant

2006-06-30 Thread Dominique Devienne
Nice. You can also make cc-elements implicit, so that you don't have to specify it when using . --DD On 6/30/06, James Fuller <[EMAIL PROTECTED]> wrote: Here is a nice illustration in context of using cc with macrodef. http://ant.apache.org/manual/CoreTasks/macrodef.html definition:

RE: how can I use classpath from taskdef in task excecution

2006-06-30 Thread Burgess, Benjamin
Class loading is done (almost always) parent first. So basically if the Ant Task is up high in the classloader hierarchy (such as in the ant lib directory) then every class it needs would need to be at the same level or above (such as CLASSPATH environment variable or the JDK extensions). The depe

Re: help to compile c / c++ files in ant

2006-06-30 Thread James Fuller
Here is a nice illustration in context of using cc with macrodef. http://ant.apache.org/manual/CoreTasks/macrodef.html definition: usage:

how can I use classpath from taskdef in task excecution

2006-06-30 Thread Ralf Sigmund
hello, i wrote a custom ant task which depends on several jars. a complete classpath is given to the taskdef. however when i use the task in a target I get Class not found errors. It all works when I start ant itself with the complete classpath. but this is not what I want - I would like to exe

Re: help to compile c / c++ files in ant

2006-06-30 Thread Steve Loughran
Sayed, Irfan (Irfan) wrote: hi, I went to that site but I found only main steps to use external task such as cc. As I am very new to Ant I don't know how to use it so can anybody please give me any sample build file which compiles the c / c++ files regards irfan. here you go. comes wit