DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17711>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17711 Enable use of properties reference in depends ------- Additional Comments From [EMAIL PROTECTED] 2003-03-06 11:20 ------- I've managed to get this working in my local build by modifying the setDepends () method in Target.java. See below: public void setDepends(String depS) { //Added by Steve Urwin depS = project.replaceProperties(depS); ... } Note: this allows me to effectively implement a "for loop" for building all projects in comma delimited list held in a property.