diff --git a/docs/manual/OptionalTasks/test.html b/docs/manual/OptionalTasks/test.html index 3c2ad4c73..6999fad2e 100644 --- a/docs/manual/OptionalTasks/test.html +++ b/docs/manual/OptionalTasks/test.html @@ -10,6 +10,8 @@

Test

Description

This is a primitive task to execute a unit test in the org.apache.testlet framework.

+

This task is deprectated as the Testlet framework has been +abandoned in favor of JUnit by the Avalon community.

Note: This task depends on external libraries not included in the Ant distribution. See Library Dependencies for more information. @@ -68,7 +70,7 @@ which has content that specifies tasklet classname.

The above will run the testlets org.foo.MyTestlet and org.foo.MyOtherTestlet
-

Copyright © 2001-2002 Apache Software Foundation. All rights +

Copyright © 2001-2003 Apache Software Foundation. All rights Reserved.

diff --git a/docs/manual/install.html b/docs/manual/install.html index e7eb11dca..f2a6c9deb 100644 --- a/docs/manual/install.html +++ b/docs/manual/install.html @@ -320,8 +320,10 @@ Installing Ant / Optional Tasks section above.

testlet.jar - test task - java.apache.org/framework + deprecated test task + Build from the gzip compress tar archive in http://cvs.apache.org/viewcvs.cgi/avalon-site/graveyard/ antlr.jar diff --git a/src/main/org/apache/tools/ant/taskdefs/Expand.java b/src/main/org/apache/tools/ant/taskdefs/Expand.java index 22de90a01..1e2286fc1 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Expand.java +++ b/src/main/org/apache/tools/ant/taskdefs/Expand.java @@ -1,7 +1,7 @@ /* * The Apache Software License, Version 1.1 * - * Copyright (c) 2000-2002 The Apache Software Foundation. All rights + * Copyright (c) 2000-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/Test.java b/src/main/org/apache/tools/ant/taskdefs/optional/Test.java index 16168343e..274cd3d34 100644 --- a/src/main/org/apache/tools/ant/taskdefs/optional/Test.java +++ b/src/main/org/apache/tools/ant/taskdefs/optional/Test.java @@ -1,7 +1,7 @@ /* * The Apache Software License, Version 1.1 * - * Copyright (c) 2000,2002 The Apache Software Foundation. All rights + * Copyright (c) 2000,2002-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -58,8 +58,12 @@ import org.apache.tools.ant.BuildException; import org.apache.tools.ant.taskdefs.Java; /** - * This is a primitive task to execute a unit test in the org.apache.testlet framework. + * This is a primitive task to execute a unit test in the + * org.apache.testlet framework. * + * @deprecated testlet has been abandoned in favor of JUnit by the + * Avalon community + * * @author Peter Donald * @ant.task ignore="true" */