bodewig 2003/02/07 01:50:49
Modified: docs/manual install.html
docs/manual/OptionalTasks test.html
src/main/org/apache/tools/ant/taskdefs Expand.java
src/main/org/apache/tools/ant/taskdefs/optional Test.java
Log:
Testlet is dead
Revision Changes Path
1.44 +4 -2 jakarta-ant/docs/manual/install.html
Index: install.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/install.html,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- install.html 1 Feb 2003 14:21:26 -0000 1.43
+++ install.html 7 Feb 2003 09:50:49 -0000 1.44
@@ -320,8 +320,10 @@
</tr>
<tr>
<td>testlet.jar</td>
- <td>test task</td>
- <td><a href="http://java.apache.org/framework"
target="_top">java.apache.org/framework</a></td>
+ <td><strong>deprecated</strong> test task</td>
+ <td>Build from the gzip compress tar archive in <a
+ href="http://cvs.apache.org/viewcvs.cgi/avalon-site/graveyard/"
+
target="_top">http://cvs.apache.org/viewcvs.cgi/avalon-site/graveyard/</a></td>
</tr>
<tr>
<td>antlr.jar</td>
1.9 +3 -1 jakarta-ant/docs/manual/OptionalTasks/test.html
Index: test.html
===================================================================
RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/test.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- test.html 22 Jun 2002 23:38:29 -0000 1.8
+++ test.html 7 Feb 2003 09:50:49 -0000 1.9
@@ -10,6 +10,8 @@
<h2><a name="test">Test</a></h2>
<h3>Description</h3>
<p>This is a primitive task to execute a unit test in the org.apache.testlet
framework.</p>
+<p><strong>This task is deprectated as the Testlet framework has been
+abandoned in favor of JUnit by the Avalon community.</strong></p>
<p><strong>Note:</strong> This task depends on external libraries not
included
in the Ant distribution. See <a href="../install.html#librarydependencies">
Library Dependencies</a> for more information.
@@ -68,7 +70,7 @@
The above will run the testlets org.foo.MyTestlet and org.foo.MyOtherTestlet
<hr>
-<p align="center">Copyright © 2001-2002 Apache Software Foundation. All
rights
+<p align="center">Copyright © 2001-2003 Apache Software Foundation. All
rights
Reserved.</p>
</body>
1.38 +1 -1
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Expand.java
Index: Expand.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Expand.java,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- Expand.java 4 Dec 2002 16:42:30 -0000 1.37
+++ Expand.java 7 Feb 2003 09:50:49 -0000 1.38
@@ -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
1.11 +6 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/Test.java
Index: Test.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/Test.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Test.java 25 Jul 2002 15:21:11 -0000 1.10
+++ Test.java 7 Feb 2003 09:50:49 -0000 1.11
@@ -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.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 <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @ant.task ignore="true"
*/