How do you load a file into a variable in ant using the <loadfile> task?
I'm trying the following and it doesn't seem to work. <property name="file.configs.txt" value="" /> ... <target name="..."> <loadfile property="file.configs.txt" srcFile="remoteConfig/configs.txt" /> </target> I read here that the <loadfile> task is supposed to load the contents of a file into the specified property. ...