Re: Question about deprecation

2005-08-14 Thread David A. Bartmess
d classes from a build, without necessarily removing them from the directory structure or repository. Thanks, -Bob --- David A. Bartmess Member of the International Internet LeatherCrafters' Guild http://iilg.org Software Configuration Manager http://edingo.n

Re: Exec task does not fail inspite of non-zero error level

2005-08-06 Thread David A. Bartmess
his message in error, or have reason to believe you are not authorized to receive it, please promptly delete this message and notify the sender by e-mail with a copy to [EMAIL PROTECTED] Thank you ------- David A. Bartmess Software Configuration Manager http://edingo.net -

Sample of custom task showing how to get filesets?

2005-07-31 Thread David A. Bartmess
rited Task class? I don't see much on the web on how to do this, I've looked through all the message bases and FAQ's, but there's no real good tutorial on how to write a "complete" custom task, and how methods get called or data gets generated by the Task cla

Re: how to make hierchical build possible with ANT?

2005-07-28 Thread David A. Bartmess
--- Start your day with Yahoo! - make it your home page --- David A. Bartmess Software Configuration Manager http://edingo.net --- jSyncManager Open Source PDA Sync Program Developer http://jsyncmanager.org ---

Re: Improving the manual

2005-07-27 Thread David A. Bartmess
(250) 361-9093 emergency - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ----------- David A. Bartmess Software Configuration Manager http://edingo.net --- jSyncManager Ope

Re: While Looping in ANT

2005-07-23 Thread David A. Bartmess
I can execute another target. I would like to know how to keep checking for a property without exiting the ant JVM. Thx Anil ------- David A. Bartmess Software Configuration Manager http://edingo.net --- jSyncManager Open Source PDA Sync Program Developer http://jsyncmanager.org

Re: Moving certain folders with a folder

2005-07-22 Thread David A. Bartmess
] --- David A. Bartmess Software Configuration Manager http://edingo.net --- jSyncManager Open Source PDA Sync Program Developer http://jsyncmanager.org - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Memory usage of targets vs macrodefs?

2005-04-04 Thread David A. Bartmess
emory usage for using targets vs macrodefs in the build? The problem COULD lie in the wsdl generation, but we're not sure at this point. Thanks for any info! -- David A. Bartmess http://edingo.net - To unsubscribe, e-ma

Re: Escape " in ANT script and Use CVS task

2005-02-18 Thread David A. Bartmess
; > ${build.dir}\${file.name}"/> > > You can't escape quotes like this in XML. > > You must use " instead. (At least I think that's the correct > entity) > > -DD > >

Re: Escape " in ANT script and Use CVS task

2005-02-18 Thread David A Bartmess
The "command" attribute is a text string passed directly to cvs, so use whatever command you normally would use. And for the comment, you can use any variable set prior to the call. For example, to add a file with a given comment (either in a build.properties, a prior target, or the command line),

Re: how are variables set?

2005-02-18 Thread David A Bartmess
I'm not familiar with this software, but as far as ant goes, is there a build.properties file, or some other file being imported in the main build.xml? If so, look in there, or add the j2ee.home= to it so it's set. Good luck! On Fri, February 18, 2005 2:31 pm, Frank said: > Just starting to use a

Re: AW: Problem with line endings

2005-02-15 Thread David A. Bartmess
liche Nachricht- > > Von: David A. Bartmess [mailto:[EMAIL PROTECTED] > > Gesendet am: Dienstag, 15. Februar 2005 15:37 > > An: Ant Users List > > Betreff: Problem with line endings > > > > I've got an ant script that appends using the task to > > a f

Problem with line endings

2005-02-15 Thread David A. Bartmess
I expected. I expected to see echo use the LF only, since it's a Linux machine and the default line separator is a LF... If I run dos2unix on the file(s), everything works fine... Any ideas? -- David A. Bartmess Software Configuration Manager / Sr. Software Developer eDingo Enterpris

Re: Two targets with the same depends-target

2005-02-14 Thread David A. Bartmess
nd-target, but the second target > doesn't call the depend-target again. > > Example: > > > make something > > > > > > Make something > > > > Here "prepare-common" is only called for "mkdir-1" not for "mkdir-2".