Hi,
how can I define more than one class-path for xrpcc. It seems that only one is allowed. Unfortunately I need xrpcc to look at two different. I tried to seperate the classpaths with semicolon but it did not work...so how does it work???
<target name="xrpcc-server" depends="compile-server"
description="Runs the xrpcc tool for the server">
<echo message="Running xrpcc for the server:"/>
<exec executable="${xrpcc}">
<arg line="-classpath ${shareddir};${SOME_OTHER_DIR}" />
<arg line="-server" />
<arg line="-d ${serverdir}" />
<arg line="config.xml" />
</exec>
</target>