RE: perforce tasks

2005-01-14 Thread Kajsa.Anderson
> I think the failonerror attribute can just be used to make > the Perforce > tasks more lenient on some type of errors; but if you say > failonerror="false", you cannot get the error(s) which > happen, they are > swallowed. Ok, that's what I was afraid of when I couldn't find it in the manua

Re[2]: Adding file into the specified directory of existing archive

2005-01-14 Thread Juleni
Hello Alexey, thank you for your quick response. It works. thanks again With best regards, Julian Saturday, January 15, 2005, 12:17:43 AM, you wrote: ANS> You need to something like that: ANS> ANS> includes="META-INF/jboss.xml"/> ANS> ANS> - Alexey. ANS> Juleni

Re: Adding file into the specified directory of existing archive

2005-01-14 Thread Alexey N. Solofnenko
You need to something like that: - Alexey. Juleni wrote: Hello, I have a problem to add some file to the specified directory of existing archive. Is there possibility to do this? I have found only examples for adding file to the existing archive, but the file will be added to the root of the

Adding file into the specified directory of existing archive

2005-01-14 Thread Juleni
Hello, I have a problem to add some file to the specified directory of existing archive. Is there possibility to do this? I have found only examples for adding file to the existing archive, but the file will be added to the root of the archive. For example: It means if I have myarch

Unions of PropertySets

2005-01-14 Thread Matthew Nelson
I'm having some difficulty creating unions of PropertySets for a series of subprojects in my build ... even when I copy the sample code directly from the Ant documentation! It just doesn't work. Am I doing something naively wrong, or is this a problem with Ant? A build script that demonstrates

RE: war task webxml attribute

2005-01-14 Thread Durham David R Jr Contr 805 CSPTS/SCE
Disregard. I changed it to: Key point being the ${...src}, should be ${...dest}. Thanks for the help, Dave > -Original Message- > From: Durham David R Jr Contr 805 CSPTS/SCE > Sent: Friday, January 14, 2005 3:45 PM > To: Ant Users List > Subject: RE:

RE: war task webxml attribute

2005-01-14 Thread Durham David R Jr Contr 805 CSPTS/SCE
> The excludesFile attribute specifies the name of a file > containing the names of files to be excluded Ok, yeah. That's kind of important. I tried excludes, and it still outputs a warning.

Re: AntSpaces - Ant / JavaSpace Integration

2005-01-14 Thread Matt Benson
http://ant.apache.org/faq.html#adding-external-tasks --- Brian Agnew <[EMAIL PROTECTED]> wrote: > I'd like to get this on the external tools page. Can > someone point me in > a suitable direction re. submitting the relavent > info, pls ? > > Thx, > > Brian > > Brian Agnew wrote: > > AntSpaces

Re: AntSpaces - Ant / JavaSpace Integration

2005-01-14 Thread Brian Agnew
I'd like to get this on the external tools page. Can someone point me in a suitable direction re. submitting the relavent info, pls ? Thx, Brian Brian Agnew wrote: AntSpaces 0.8 has just been released. AntSpaces integrates Ant with JavaSpaces to allow scripting of distributed tasks. This release

AntSpaces - Ant / JavaSpace Integration

2005-01-14 Thread Brian Agnew
AntSpaces 0.8 has just been released. AntSpaces integrates Ant with JavaSpaces to allow scripting of distributed tasks. This release has substantially enhanced the specification of entries. http://www.oopsconsultancy.com/software/antspaces/index.html -- Brian Agnew http://www.oo

RE: war task webxml attribute

2005-01-14 Thread Harkness, David
Durham David R Jr penned > That doesn't work for me. This: > > webxml="${prototype.src.web-inf}/web.xml" > excludesfile="${prototype.src.web-inf}/web.xml"> > > > > The excludesFile attribute specifies the name of a file contai

external tool: Ivy

2005-01-14 Thread Xavier Hanin
I would like to submit an external tool to the ant list: Ivy is a simple yet powerful dependency manager featuring continuous integration, dependencies of dependencies management, multiple repositories including ibiblio and high performance (use of a local cache).

RE: war task webxml attribute

2005-01-14 Thread Durham David R Jr Contr 805 CSPTS/SCE
> You should use the webxml attribute to point to your WEB-INF/web.xml > file and exclude that file from the rest you add to the archive. Or > use . That doesn't work for me. This: Throws a warning: Warning: selected war files include a WEB-INF/web.xml which

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

2005-01-14 Thread Peter Reilly
although not obvious from the manual page for filterchain most of the tokenfilter filters may also be used directly under so the following will also work: Peter Ivan Ivanov wrote: Hello, I also encountered this problem. Here is a sample that does the job:

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

2005-01-14 Thread Ivan Ivanov
Hello, I also encountered this problem. Here is a sample that does the job: a_file_with_crlf: this is a line this is a sencond line more crlfs another line yet another on two more and file ends After running the abov