RE: Problem with condition selection property; Help needed

2007-11-01 Thread Shailesh Sharma
I have figured out that this is happening because of fork=true while deploying. I do not know the solution. Shailesh Sharma <[EMAIL PROTECTED]> wrote: Here is my build.xml [input] validargs="y,n" addproperty="user.selection" /

Re: deploy task to Tomcat partially works

2007-11-01 Thread Rob Wilson
Hi Steve, Thank you for the tips, for some strange reason the file never gets created?! I have included verbose in the copy task, with the output I copied+paste the source file and destination dir into explorer to confirm the source file and destination directory exists... I assume it's because o

How to figure out how Ant is invoked...

2007-11-01 Thread weiji
Hi, We are using Ant in our build process to compile Java sources as well as run a compiler for Adobe Flex. The Flex part of our webapp handles the user interface. We noticed that running the Ant target from within Adobe's Flex Builder IDE will generate output differently compared to running th

How to set an environment variable through Ant?

2007-11-01 Thread Saladin Sharif
I am just curious whether there is a clean way to set environment variables through ANT. You see, before running my Ant script, I am currently setting my environment variables through a shell script, and I aslo have a batch script version for when running Ant on windows. I would like to get ri

RE: How do I filter a file of files

2007-11-01 Thread Dick, Brian E.
Thanks for the suggestion, but the scp task does not provide the capabilities I need. The scp task does not support a "list" action and does not support filesets on the remote host. -Original Message- From: David Weintraub [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 6:56 P

Clarification in xslt task

2007-11-01 Thread Ramu Sethu
Hi all We are using junitreport task in our project. it goes like this I need to use the same aggreated xml for another xslt transform so i thought of using task. Had a look at check.xml in ant source code and tried like this I was expecting the same output of junit re

Ant task to convert PNGs to GIFs?

2007-11-01 Thread Tim Meals
I'm trying to create some website graphics through XSL transforms of an SVG file. Only problem is the Batik task just outputs PNGs, and not GIFs. Redoing the entire site to PNGs is not an option -- this should be a transparent transition from using ImageReady templates to a scripted solution that

AW: How to set an environment variable through Ant?

2007-11-01 Thread Jan.Materne
To be precise there are many processes: 01: $ant 02: 03: / 04: environment(01) --> java-Ant(01) --> external process (03) You can only pass environment variables along this road, not in the other direction. Jan >-Ursprüngliche Nachricht- >Von: Ninju Bohra [mailto:[EMAIL PROT

AW: Ant task to convert PNGs to GIFs?

2007-11-01 Thread Jan.Materne
1. cleanest solution: batik.GifRasterizer problem: not existent ? ;) 2. Ant-only workaround: task problem: not sure if gif's and png's are handled ... 3. 3rd-party tool with Ant integration: problem: you need that tool and I dont any 4. 3rd-party tool without integration: problem: al

Re: How to set an environment variable through Ant?

2007-11-01 Thread Ninju Bohra
Hello, For ANT task that spawn a seperate process ( and come to mind) there are attributes to allow you define 'environment variable' that will be applied to the process that the task will run in. The ANT Manual for these two tasks are quite helpful Hope that helps, Ninju - Ori

AW: Clarification in xslt task

2007-11-01 Thread Jan.Materne
AFAIK there are no transformations of junit tests in check.xml (only via ed from the build.xml). In check.xml Checkstyle reports are transformed to several output formats (text, html, ...) For writing your own stylesheets you could consult http://svn.apache.org/repos/asf/ant/core/trunk/src/etc

AW: How to figure out how Ant is invoked...

2007-11-01 Thread Jan.Materne
You could run Ant with -debug option. In Eclipse you can set this in the run-external dialog. Jan >-Ursprüngliche Nachricht- >Von: weiji [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag, 1. November 2007 22:59 >An: user@ant.apache.org >Betreff: How to figure out how Ant is invoked... >