aspose file tools
The moose likes Ant, Maven and Other Build Tools and the fly likes property file: value of one property needs to be dependant on the value of another property. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » Ant, Maven and Other Build Tools
Reply Bookmark "property file: value of one property needs to be dependant on the value of another property." Watch "property file: value of one property needs to be dependant on the value of another property." New topic
Author

property file: value of one property needs to be dependant on the value of another property.

peter cooke
Ranch Hand

Joined: Mar 16, 2004
Posts: 310
I have a property file used by my ant process.
It needs concatenated to the beginning or end of another property.


The simplest example is shell scripting:
unitTestPath=/home/me/xxx/lib
PATH=${unitTestPath}:$PATH

can properties do something like this? I am not finding it in the anything on the web


CIAO Peter M. Cooke
Wendy Gibbons
Bartender

Joined: Oct 21, 2008
Posts: 1098

Yes they can, and I think you are pretty close on the syntax as well.
peter cooke
Ranch Hand

Joined: Mar 16, 2004
Posts: 310
Yep the syntax worked.

in the property file
prop1=foo
prop2=bar
prop3=baz
prop4=${prop1},${prop2},${prop4}
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: property file: value of one property needs to be dependant on the value of another property.
 
Similar Threads
Read contextPath during initialization
Writting to a local file
storing file path in weblogic 8.1
How to implement workflow in Struts
how to pass bundle full path to ResourceBundle ?