Index: src/main/org/apache/tools/ant/taskdefs/Property.java =================================================================== RCS file: /home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/Property.java,v --- src/main/org/apache/tools/ant/taskdefs/Property.java 12 Nov 2004 15:14:59 -0000 1.73 +++ src/main/org/apache/tools/ant/taskdefs/Property.java 3 Jan 2005 09:09:01 -0000 @@ -141,6 +141,16 @@ } /** + * Set a multiline property. + * @param msg the CDATA text to append to the output text + */ + public void addText(String msg) { + msg = getProject().replaceProperties(msg); + if (value == null) value = msg; + else value += msg; + } + + /** * Filename of a property file to load. * @param file filename *