Re: decompose build.xml

2005-03-15 Thread Martin Cooper
you might want to look at , , , , and tasks, amongst others. -- Martin Cooper thanks, Thufir - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ---

Re: Relative classpaths for a manifest

2005-03-06 Thread Martin Cooper
mple handy right now, otherwise I'd post it.) -- Martin Cooper On Sun, 6 Mar 2005, Abbey Sparrow wrote: I am currently jumping through a couple of hoops in order to get relative classpaths

Re: Cleaning a text file with tons of extra CRLF's

2005-01-12 Thread Martin Cooper
You might try the (optional) task. -- Martin Cooper On Wed, 12 Jan 2005, Nat Gross wrote: Hi; On Windows, I get a daily text file from another process that has tons of extra EOL's, which I manually delete with my editor. How can I use Ant's filter to copy the file and strip all dupli

RE: Ant Users List (should be: JUnit test suggestions)

2005-01-12 Thread Martin Cooper
your top level build. Using the file is necessary because properties set in the individual build files will not be available to your top level build file. Does that help? -- Martin Cooper __   Robert Lin Eng. Intern | Blue Jungle | Redwood City,

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

2005-01-06 Thread Martin Cooper
Does this tool not support or something? When I try to open any of my build files, it tells me it's not a valid build file. ;-( -- Martin Cooper On Thu, 6 Jan 2005, Chris Clohosy wrote: Hi all, I would like to draw your attention to an open-source Ant GUI that I am developing, called &

RE: Ant should have an ext directory

2005-01-03 Thread Martin Cooper
people install Ant, they run 'ant -f setup.xml' where the default target in that build file downloads your extension libraries from some known place and puts them into ${user.home}/.ant/lib. -- Martin Cooper -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Se

Re: Macrodef in import file having same behaviour as targets?

2004-12-30 Thread Martin Cooper
You may be running into a bug that has been fixed but is not yet in a release. Try putting your macrodefs inside targets, and using the appropriate depends to ensure those targets are invoked first. -- Martin Cooper On Thu, 30 Dec 2004 [EMAIL PROTECTED] wrote: HERE IS MY EXAMPLE IMPORT FILE

RE: AntDoc with Ant 1.6.2 ?

2004-12-30 Thread Martin Cooper
ary download don't work either. -- Martin Cooper -Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Thursday, December 30, 2004 4:20 AM To: ant_user (E-Mail) Subject: AntDoc with Ant 1.6.2 ? Hi, i'm looking for a tool, that generates HTML pages from Ant buildfile

Re: promting users input

2004-12-27 Thread Martin Cooper
http://ant.apache.org/manual/CoreTasks/input.html -- Martin Cooper On Mon, 27 Dec 2004, Shailesh Sharma wrote: Hi, I have a very simple ANT script that does my ear/war file deployments on weblogic 8.1 servers. But what i wanted to do is that i wanted to echo some messges something like: "D

Re: Properties getting unset with ?

2004-12-05 Thread Martin Cooper
clue what's going on. So, I guess I'm stuck with doing things the clunky way. Sigh. Thanks, anyway, for your help. -- Martin Cooper > Jake > > > > At 08:05 PM 12/4/2004 -0800, you wrote: > > > > > >On Sat, 4 Dec 2004, Jacob Kjome wrote: > > &g

Re: Properties getting unset with ?

2004-12-04 Thread Martin Cooper
one before the target I'm trying to override. Is there a better way? TIA. -- Martin Cooper That should work as expected. Jake At 11:39 AM 12/4/2004 -0800, you wrote: This is weird. I'm using Ant 1.6.2, and trying to use with selective overriding of targets. The problem is that when

Properties getting unset with ?

2004-12-04 Thread Martin Cooper
et: init: [echo] foo is set show: [echo] foo = foo-value which is what I expect. Is this a known bug? Or is there something I'm doing wrong? If it's a bug, is there a workaround? I can't really do much with when my properties g