On Tue, 9 Apr 2002, Joel Rees <[EMAIL PROTECTED]> wrote: > Stefan Bodewig suggested: > >> On Mon, 8 Apr 2002, Joel Rees <[EMAIL PROTECTED]> wrote: >> >> > <property name="src" value="."/> >> > <property name="build" value="../classes"/> >> >> I'd highly recommend location instead of value here. > > Not sure what you mean by location instead of value,
<property name="src" location="."/> <property name="build" location="../classes"/> Ant now knows that you want the properties to point to files and that it should resolve the file names relative to the project's basedir. The values of the properties will be absolute pathnames. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
