blob: dfd0c4dd3857e845c6ff9bf76bce06883c1733ef [file] [log] [blame]
/**********************************************************************
Copyright (c) 2002 IBM Corp. and others. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.taskdefs.Echo;
public class AntTestTask extends Task {
public AntTestTask() {
super();
}
/**
* @see org.apache.tools.ant.Task#execute()
*/
public void execute() throws BuildException {
Echo echo= new Echo();
echo.setProject(getProject());
echo.setMessage("Testing Ant in Eclipse with a custom task");
echo.execute();
}
}