Regarding ant JBOSS script ...........Urgent

2005-09-09 Thread Srikrishna_Parthasarathy
Below is the script for starting jboss. I would like to introduce a -D option for a property file to the startup script and access it in my java web app . I know on how to retrieve on the java side. Eager to receive group's ideas. http://dbaw

Re: GET ANT task parameters...

2005-09-09 Thread James Abley
On Fri, 2005-09-09 at 16:04, [EMAIL PROTECTED] wrote: > Hello all, > > I'm trying to download a website using the GET ant task but I'm facing > some problems... > > 1. Can't use URL variables and values as parameters... > Using Eclipse facility, I can't write down the full address with > variable

GET ANT task parameters...

2005-09-09 Thread marcello.sales
Hello all, I'm trying to download a website using the GET ant task but I'm facing some problems... 1. Can't use URL variables and values as parameters... Using Eclipse facility, I can't write down the full address with variables needed to get the information. In the following URL https://www.a

Re: ANN: Two simple Task for/with LaTeX

2005-09-09 Thread Juergen A. Lamers
On Fri, 9 Sep 2005, Dominique Devienne wrote: > I suggest you self update the Ant Wiki at > http://wiki.apache.org/ant/AntExternalTaskdefs. Thanks, --DD Roger! And who is updating the FAQ ;-) bfn Juergen A. - To unsubscribe,

Re: ANN: Two simple Task for/with LaTeX

2005-09-09 Thread Dominique Devienne
I suggest you self update the Ant Wiki at http://wiki.apache.org/ant/AntExternalTaskdefs. Thanks, --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Build only the updated files

2005-09-09 Thread Dominique Devienne
Well, that's the default behavior, assuming you have a single stylesheet and feed a to . --DD - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: multiple excludes clause ??

2005-09-09 Thread Burgess, Benjamin
Or you could do the most obvious solution from the manual: Excludes attribute= comma- or space-separated list of patterns of files that must be excluded So you could do: Ben -Original Message- From: Ninju Bohra [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 07, 2005 12:28 PM To

RE: Condition operation based on existance of a file ?

2005-09-09 Thread Moran Ben-David
You could use the task to set a variable with as a subtask within it. Then actually do the control-flow check in a target's "if" or "unless" attribute. moran > -Original Message- > From: Darryl L. Miles [mailto:[EMAIL PROTECTED] > Sent: Friday, September 09, 2005 5:23 AM > To: user@ant

RE: [Maybe Spam] Condition operation based on existance of a file ?

2005-09-09 Thread Bhadra, Jatin
Try this. -Original Message- From: Darryl L. Miles [mailto:[EMAIL PROTECTED] Sent: 09 September 2005 10:23 To: user@ant.apache.org Subject: [Maybe Spam] Condition operation based on existance of a file ? How can I instruct ANT to conditio

RE: cant run ant in background on linux?

2005-09-09 Thread Geoff Meakin
I now have a workaround which is: Ant < /dev/null & However this strikes me as very odd, and any light shed upon the situation would be good :-) Cheers -Geoff -Original Message- From: Geoff Meakin [mailto:[EMAIL PROTECTED] Sent: 09 September 2005 10:19 To: Ant Users List Subject: can

Build only the updated files

2005-09-09 Thread Ana Gaspar Martínez
Hello, I'm working with eclipse, i would like to proccess with the xslt processor only the xml files that have been updated (or created) since the last ant build. how can i make that? - To unsubscribe, e-mail: [EMAIL PROTECTE

RE: Condition operation based on existance of a file ?

2005-09-09 Thread RADEMAKERS Tanguy
check out the ant-contrib project on sourceforge /t >-Original Message- >From: Darryl L. Miles [mailto:[EMAIL PROTECTED] >Sent: Friday, September 09, 2005 11:23 AM >To: user@ant.apache.org >Subject: Condition operation based on existance of a file ? > > >How can I instruct ANT to condit

Condition operation based on existance of a file ?

2005-09-09 Thread Darryl L. Miles
How can I instruct ANT to conditionally do something, like a regular if() statement. Here is what I have so far (the unzip is my conditional operation): Thanks -- Darryl L. Miles - T

cant run ant in background on linux?

2005-09-09 Thread Geoff Meakin
Hi, I wonder if anybody has experienced the same? I'm on a unix/linux system, and trying to run simply: I have a foreach task calling a target: that target calls a java as follows: When I run ant, it works as expected When I run ant & (i.e. in the background), it does not work The