While using the java task. I would like to be able to pass some properties
values using the -D option. Here is an excerpt from my build.xml file.

<target name="datarow">
    <java classname="com.cedera.util.datatransfer.DataLoadReportRow">
    <jvmarg
value="-Ddatadirectory=${src.data},-Ddatasource=${connection},-Dlogdirectory
=${src.log}"/>
    </java>
  </target>

The problem is that when I execute this I get null values for all these
properties.
Any ideas on how I can correctly use the -D option.

Thanks,
Atul

Reply via email to