You might consider using a property file for each environment, like:

production.properties:
application.property1=foo

dev.properties:
application.property1=hello

then use the following in your build.xml:
<property file="${env}.properties"/>

and start ant with -Denv=dev or -Denv=production

Hope this helps,

-Robert Anderson

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 13, 2003 9:57 AM
To: [EMAIL PROTECTED]
Subject: $${${}}


Hello all,
I would like to know if their is a way to do this with Ant:

build.properties file:
application.environment=dev
application.dev.property1=hello
application.production.property1=foo

build.xml file:
...
       <filter token="message" value="${application.
${application.environment}.property1}"/>
...

Thus the property would change according to the environment target.
Is it possible?

Thanks in advance,
Loïc Lefèvre




This message and any attachments (the "message") is
intended solely for the addressees and is confidential. 
If you receive this message in error, please delete it and 
immediately notify the sender. Any use not in accord with 
its purpose, any dissemination or disclosure, either whole 
or partial, is prohibited except formal approval. The internet
can not guarantee the integrity of this message. 
BNP PARIBAS (and its subsidiaries) shall (will) not 
therefore be liable for the message if modified. 

                ---------------------------------------------

Ce message et toutes les pieces jointes (ci-apres le 
"message") sont etablis a l'intention exclusive de ses 
destinataires et sont confidentiels. Si vous recevez ce 
message par erreur, merci de le detruire et d'en avertir 
immediatement l'expediteur. Toute utilisation de ce 
message non conforme a sa destination, toute diffusion 
ou toute publication, totale ou partielle, est interdite, sauf 
autorisation expresse. L'internet ne permettant pas 
d'assurer l'integrite de ce message, BNP PARIBAS (et ses
filiales) decline(nt) toute responsabilite au titre de ce 
message, dans l'hypothese ou il aurait ete modifie.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to