RE: how to make replace task not expand Java properties like ${user.home}

2008-11-18 Thread Harnack Frank
Hello, try $${user.home}/public_html ! Regards Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 5:43 AM To: user@ant.apache.org Subject: how to make replace task not expand Java properties like ${user.home} Hi. I'm writing

AW: how to make replace task not expand Java properties like ${user.home}

2008-11-18 Thread Knuplesch, Juergen
Never did this, but I would try sth like: -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. November 2008 05:43 An: user@ant.apache.org Betreff: how to make replace task not expand Java properties like ${user.home}

AW: Running a remote process in background

2008-11-18 Thread Knuplesch, Juergen
Hello, So what is happening instead? Is ANT waiting for the server to stop? Is the server starting? Did you try it with a more somple command to start on the remote machine? (sth. Like "cat") I used these days the exec-command on a Windows machine and it works fine now. I use it to start

AW: How to build an Ant path from a comma-seperated list?

2008-11-18 Thread Jan.Materne
If the modules have a common base directory you could use for building an include pattern from your list. moduleA,moduleB --> **/moduleA/,**/moduleB/ Then specifying the path is But if you just want to iterate with or you could use simply their "list" attribute. Jan >-Ursprüng

how to make replace task not expand Java properties like ${user.home}

2008-11-18 Thread removeps-generic
Hi. I'm writing an ant task to replace APPBASE with ${user.home}/public_html The command does replaces APPBASE, but it expands ${user.home}. I don't want it to expand this variable as I will be copying server.xml to another location, and the expanded value of the Java property is differ

How to build an Ant path from a comma-seperated list?

2008-11-18 Thread snoofkin
Hi, I would like to describe Java module dependencies as a comma-separated list, and have Ant recursively clean/compile them. This is possible using the following setup: But I would like to move to a simple list, so

Running a remote process in background

2008-11-18 Thread Susheel Raina
Hi, We are having Weblogic Server on a linux box and the deployment set up is done from Windows Box remotely. I have to start/stop the server using ant and for that I am using sshexec command. Now the problem with it is that I need to exit the task once the server is started but in my case it do

RE: Verifying existence of files under a directory

2008-11-18 Thread Rebhan, Gilbert
-Original Message- From: Rohit P [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2008 11:39 AM To: Ant Users List Subject: Re: Verifying existence of files under a directory /* Thanks Gilbert for quick response. The first solution would be suitable for my current issue & it worked

Re: Verifying existence of files under a directory

2008-11-18 Thread Rohit P
Thanks Gilbert for quick response. The first solution would be suitable for my current issue & it worked out. Currently i am using Ant1.6.5 and in Ant Manual [for 1.6.5] for FileSets i don't see "id" attribute in the Attribute || Description || Required table. Can you please check if this informa

RE: Verifying existence of files under a directory

2008-11-18 Thread Rebhan, Gilbert
-Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2008 11:05 AM To: 'Ant Users List' Subject: RE: Verifying existence of files under a directory -Original Message- From: Rohit P [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 200

RE: Verifying existence of files under a directory

2008-11-18 Thread Rebhan, Gilbert
-Original Message- From: Rohit P [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2008 10:16 AM To: Ant Users List Subject: Verifying existence of files under a directory /* But before i do the 'concat' action i need to verify if there are files under ${REPORTS_DIR}. Can you let me kn

Verifying existence of files under a directory

2008-11-18 Thread Rohit P
Hi, As part of my build script i need to 'concat' set of files [with similar extension] under a directory into a .csv file. ... ... ... ... ... ... But before i do the 'concat' action i need to verify if there are files under ${REPORTS_DIR}. Can you let me