Javadoc problem

2005-01-07 Thread Rhino
I need some guidance on how to prevent a specific warning message from a Javadoc task in Ant 1.6.2. One of the programs for which I am generating Javadocs contains the line: import common.Utilities; This line causes the following warning in my Ant build: [javadoc] E:\eclipse\3.0.1\eclipse\works

Re: How to command line argument to build.xml file

2005-01-07 Thread Rhino
This is the technique; you should be able to adapt it to your needs very easily. Suppose we have a property named 'client.only' defined as follows: The default value of the property is 'false'. If you want to override the value of the property from the command line, do this on the command line:

AntForm external ant task definition

2005-01-07 Thread =?iso-8859-1?q?Ren=E9=20Ghosh?=
Hello, I would like to post a link to the AntForm project which enables form-based java/swing interfaces to ant tasks. The following is a summary of the project: Name: AntForm Description:Ant task for form-based user interaction. Enables rapid deployment of java/swing

How to command line argument to build.xml file

2005-01-07 Thread George Dibi
Can someone tell me how to pass a stdin argument on a build file And that argument be a value in arg line. i.e >ant isoft.xml isoftlbl.txt where isoftlbl.txt is the stdin that will be a value to my arg line. ${perl.bin.dir} ${ivc.perl.target} ${drive} ${BUILD_VIEW} ${IVCO

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Chris Clohosy
It's ok Erik, you're one of the top dogs when it comes to Ant and if I'm going to build an editor that's only half decent I'm going to need all the advice I can get! :-p Chris - Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Friday, January 07, 2

RE: Change the web.xml File through ANT

2005-01-07 Thread Velagapudi, Murali
http://www.oopsconsultancy.com/software/xmltask.html is not active for checking ant external xmltasks for ant id there any other alternative thanks, Murali -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 07, 2005 10:42 AM To: user@ant.apache.or

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Erik Hatcher
On Jan 7, 2005, at 12:20 PM, Chris Clohosy wrote: Erik, I'm sorry as it seems I've offended you. No excuses, it appears I haven't dug as deep into Ant as I could have. I promise not to be disheartened by your comments (too many students give up after criticism) but to instead look into the resou

WSAD 5.1 + Ant 1.6.2

2005-01-07 Thread praful . aggarwal
Hi, I'm trying to integrate Ant 1.6.2 into WSAD 5.1, does anyone have any pointers ? Thanks, Praful *** The information contained in this communication is intended solely for the use of the individual or entity to whom it

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Chris Clohosy
Sorry Martin, Ant's Nest only does basic operations at the moment, although I'm not stopping anyone else writing a new 'level' to go into it. Chris - Original Message - From: "Martin Cooper" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Thursday, January 06, 2005 9:55 PM Subject: Re: N

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Chris Clohosy
The second version of Ant's Nest is available now from http://antsnest.sourceforge.net. It scales up better now, and the bottleneck is how the JTree displays all the nodes in a large build file, not the actual IO. So once again, any more problems/bugs let me know Erik, I'm sorry as it seems

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Erik Hatcher
On Jan 7, 2005, at 10:31 AM, Chris Clohosy wrote: Thank you Rich, Erik, and Dominique for your comments, I'll certainly look into them. When I first started looking into this around May-time, I could not find any easy way of extracting the information needed from the Ant class files. I tried eve

Re: Want to build under multiple JDKs

2005-01-07 Thread Yves Martin
Scott Simpson <[EMAIL PROTECTED]> writes: > Antoine Levy-Lambert wrote: >> Hello Scott, Dick, >> as usual a look at the manual can help. [1] >> The answer is to use the fork attribute of the javac task, and specify the >> executable. >> would do for >> instance. > > You aren't understanding my pr

Re: Want to build under multiple JDKs

2005-01-07 Thread Douglas Lochart
Now that I understand your problem (I think), why do you need to "find" the installations of the jdk's rather than having each JDK location set in a property? On any machine that is doing builds it is good practice to install the JDK's in consistent locations, this lets you create properties f

Re: Want to build under multiple JDKs

2005-01-07 Thread Scott Simpson
Antoine Levy-Lambert wrote: Hello Scott, Dick, as usual a look at the manual can help. [1] The answer is to use the fork attribute of the javac task, and specify the executable. would do for instance. You aren't understanding my problem. Of course I know how to call using different JDKs. The p

AW: Change the web.xml File through ANT

2005-01-07 Thread Jan . Materne
1) external ant lib: xmltasks 2) copying a template using nested filterchain Jan > -Ursprüngliche Nachricht- > Von: Velagapudi, Murali [mailto:[EMAIL PROTECTED] > Gesendet am: Freitag, 7. Januar 2005 16:35 > An: Ant Users List > Betreff: Change the web.xml File through ANT > > Hi , > >

Change the web.xml File through ANT

2005-01-07 Thread Velagapudi, Murali
Hi , I am using same ant script to deploy application on various systems in this i need to change the web.xml file of the application i.e the value for property_dir will be different on various systems i can pass the param-value while running the ANT script is there a way so that the ant ca

Re: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Chris Clohosy
Thank you Rich, Erik, and Dominique for your comments, I'll certainly look into them. When I first started looking into this around May-time, I could not find any easy way of extracting the information needed from the Ant class files. I tried everything, from reflection to the Ant API itself and

AW: How to define a property ?

2005-01-07 Thread Jan . Materne
use AntContribs for evaluating the one from the other. Jan > -Ursprüngliche Nachricht- > Von: Olivier Mocquais RD-BIZZ > [mailto:[EMAIL PROTECTED] > Gesendet am: Freitag, 7. Januar 2005 16:24 > An: user@ant.apache.org > Betreff: How to define a property ? > > Hi, > > I need to use a pr

How to define a property ?

2005-01-07 Thread Olivier Mocquais RD-BIZZ
Hi, I need to use a property which describe a java class in an Ant script. But, I want to define only ONE property. How can I do this ? Thanks for your answers. Olivier - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

RE: New Ant GUI - 'Ant's Nest'

2005-01-07 Thread Vadim Kazakov
Looks good, how about adding context highlighting? -Original Message- From: Chris Clohosy [mailto:[EMAIL PROTECTED] Sent: January 6, 2005 5:32 AM To: user Subject: New Ant GUI - 'Ant's Nest' Hi all, I would like to draw your attention to an open-source Ant GUI that I am developing, call

Re: How to get the jar file of a resource ?

2005-01-07 Thread Yves Martin
Yves Martin <[EMAIL PROTECTED]> writes: > > > > from="jar:file:*!/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.class" > to="*"/> > > > Have you got a way to work-around that issue with Windows ? Finally I lead to the conclusion 'pathconvert' is not enough

Re: JUnitreport and xalan upgrade issues

2005-01-07 Thread James Abley
On Fri, 2005-01-07 at 13:42, Klaus Thorup wrote: > Currently I am trying to use ANT 1.6.2 with Xalan 2.6.0 and Xerces > 2.6.2. The $ANT_HOME/lib directory contains all the appropriate jar > files xalan.jar, xml-apis.jar and xercesImpl.jar. > > However when running the junitreport task with the -ve

JUnitreport and xalan upgrade issues

2005-01-07 Thread Klaus Thorup
Currently I am trying to use ANT 1.6.2 with Xalan 2.6.0 and Xerces 2.6.2. The $ANT_HOME/lib directory contains all the appropriate jar files xalan.jar, xml-apis.jar and xercesImpl.jar. However when running the junitreport task with the -verbose flag is still this in the output: [junitreport] Usin

RE: Want to build under multiple JDKs

2005-01-07 Thread Dick, Brian E.
Sorry, misinterpreted your post. -Original Message- From: Scott Simpson [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 7:21 PM To: user@ant.apache.org Subject: Re: Want to build under multiple JDKs Dick, Brian E. wrote: > There is a java.version property. Maybe you can use

Re: Ant custom task

2005-01-07 Thread Yves Martin
"Rajiv Jaitly" <[EMAIL PROTECTED]> writes: > Hi, > > I am writing an ant task that should work on the files selected in the > ant script (fileset). How would i pass a Fileset to this task (means > method signature) ? any example will be highly appreciated. > > Will this task inherit classpath s

AW: Ant custom task

2005-01-07 Thread Jan . Materne
> I am writing an ant task that should work on the files > selected in the ant script (fileset). How would i pass a > Fileset to this task (means method signature) ? any example > will be highly appreciated. http://cvs.apache.org/viewcvs.cgi/*checkout*/ant/docs/manual/tutorial-tasks- filesets

Ant custom task

2005-01-07 Thread Rajiv Jaitly
Please read the disclaimer at the bottom of this e-mail. Hi, I am writing an ant task that should work on the files selected in the ant script (fileset). How would i pass a Fileset

Re: How to get the jar file of a resource ?

2005-01-07 Thread Yves Martin
Stefan Bodewig <[EMAIL PROTECTED]> writes: > On Fri, 17 Dec 2004, Yves Martin <[EMAIL PROTECTED]> wrote: > >> My idea is too limit the ClassPath to the strict needed jars - so I >> do not want to use ${java.class.path} in the forked JVM ClassPath. > > has an includenantruntime that you could se

Re: Want to build under multiple JDKs

2005-01-07 Thread Antoine Levy-Lambert
Hello Scott, Dick, as usual a look at the manual can help. [1] The answer is to use the fork attribute of the javac task, and specify the executable. would do for instance. (of course in real life you will use properties to tell ant where javac of JDK 1.3 is installed.) Cheers, Antoine [1] h

Re: how to unsubscribe ? email to is not working

2005-01-07 Thread Antoine Levy-Lambert
The email address which you use when sending the email to [EMAIL PROTECTED] has to be the email address which is subscribed. Have a look at all the headers of the email which you received, there is a header return path. <[EMAIL PROTECTED]> where mailuser and domain are variable the unsubscr