1 package org.ed.pack.xmlreleasenotes; 2 3 import org.apache.tools.ant.BuildException; 4 import org.apache.tools.ant.Project; 5 6 /*** 7 * @author Edouard Mercier 8 * @version @XRN_VERSION@ 9 * @taskname XMLReleaseNotes 10 * @since V0.3.2, 2004.04.01 11 * @depreacted from V0.18.0: use the {@link org.xrn.ant.XMLReleaseNotes} class instead 12 */ 13 public class XMLReleaseNotes 14 extends org.xrn.ant.XMLReleaseNotes 15 { 16 17 public void execute() 18 throws BuildException 19 { 20 log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", Project.MSG_WARN); 21 log("This '" + getClass().getName() + "' Ant task is deprecated, please use the '" + 22 org.xrn.ant.XMLReleaseNotes.class.getName() + "' instead", Project.MSG_WARN); 23 log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!", Project.MSG_WARN); 24 super.execute(); 25 } 26 27 }