Hi,

   I am using an ant task and I would like to specify an xml fragment to it 
based in some values I read from project.properties. The jelly fragment below 
is copied from dbunit plugin and I am trying to add the specific tables I would 
like to have my dataset extracted from: the tables names are already in the 
correct xml format in the ${xmlTableNames} variable, but it looks like it 
does�t get evaluated when mave.xml is processed.
   Is there any jelly construct I can use to make sure the ${xmlTableNames} get 
evaluated?

   TIA,

   Tedi

----------------
    <dbunit driver="${maven.dbunit.driverClassName}"
           url="${maven.dbunit.url}"
           schema="${maven.dbunit.schema}"
           userid="${maven.dbunit.user}"
           password="${maven.dbunit.password}">
           <export dest="${maven.build.dir}/mydata.xml" format="xml">
${xmlTableNames}
           </export> 
        </dbunit>

 

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

Reply via email to