Java Mailing List Archive

http://www.ant-tasks.com/

Apache Ant Archive

» Ant Users List
» Ant Developers List
nested property name

nested property name

2003-03-25       - By Klara Ward
Reply:     1     2     3  

Is there a reason why:
     <property file="${specjbbScriptsHome}/specjbb.properties"/>
     <echo message="${timeoutSeconds.${level}}"/>
doesn't work?
this code:
     <property file="${specjbbScriptsHome}/specjbb.properties"/>
     <echo message="${timeoutSeconds.${level}}"/>
     <echo message="${timeoutSeconds.sanity}"/>
     <echo message="${level}"/>
     <echo message="${timeoutProperty}"/>
and the contents in specjbb.properties:
timeoutSeconds.sanity=10

gets this result:
    [echo] ${timeoutSeconds.${level}}
    [echo] 10
    [echo] sanity
    [echo] timeoutSeconds.sanity

The ugly workaround is some sort if condition construction, but I don't
want that....

Klara



©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.