git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@436633 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -247,9 +247,10 @@ public class ANTLRTest extends BuildFileTest { | |||||
| interface that can be used to record test results. The | interface that can be used to record test results. The | ||||
| <antunit> task accepts arbitrary many listeners and | <antunit> task accepts arbitrary many listeners and | ||||
| relays test results to them.</p> | relays test results to them.</p> | ||||
| <p>Currently only a single implementation | |||||
| <code><plainlistener></code> modelled after the "plain" | |||||
| JUnit listener is bundled with the library.</p> | |||||
| <p>Currently two implementations - | |||||
| <code><plainlistener></code> and <code>xmllistener</code> | |||||
| modelled after the "plain" and "xml" | |||||
| JUnit listeners - are bundled with the library.</p> | |||||
| <h3 class="section"> | <h3 class="section"> | ||||
| <a name="Examples"></a> | <a name="Examples"></a> | ||||
| Examples | Examples | ||||
| @@ -263,7 +264,7 @@ public class ANTLRTest extends BuildFileTest { | |||||
| <property name="foo" value="foo"/> | <property name="foo" value="foo"/> | ||||
| </target> | </target> | ||||
| <!-- is called after the test, if if that causes an error --> | |||||
| <!-- is called after the test, even if that caused an error --> | |||||
| <target name="tearDown"> | <target name="tearDown"> | ||||
| <delete file="${foo}" quiet="true"/> | <delete file="${foo}" quiet="true"/> | ||||
| </target> | </target> | ||||
| @@ -126,6 +126,9 @@ | |||||
| <p>Based on this a few tasks to run well known .NET utilities | <p>Based on this a few tasks to run well known .NET utilities | ||||
| from within Ant are provided, namely tasks to run <a href="http://www.nunit.org/">NUnit</a>, <a href="http://nant.sf.net/">NAnt</a>, <a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=27&SiteID=1">MSBuild</a> | from within Ant are provided, namely tasks to run <a href="http://www.nunit.org/">NUnit</a>, <a href="http://nant.sf.net/">NAnt</a>, <a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=27&SiteID=1">MSBuild</a> | ||||
| and the <a href="http://wix.sf.net/">Wix</a> toolkit.</p> | and the <a href="http://wix.sf.net/">Wix</a> toolkit.</p> | ||||
| <p>The initial .NET tasks of Ant (compiler tasks for C#, J# and VB.NET | |||||
| for example) have also been moved to this Antlib and will see further | |||||
| development here.</p> | |||||
| <h3 class="section"> | <h3 class="section"> | ||||
| <a name="Tasks"></a> | <a name="Tasks"></a> | ||||
| Tasks | Tasks | ||||
| @@ -6413,7 +6413,7 @@ | |||||
| </th> | </th> | ||||
| <td colspan="1" rowspan="1" | <td colspan="1" rowspan="1" | ||||
| valign="top" align="left"> | valign="top" align="left"> | ||||
| bundles Ant 1.6.2 as of NetBeans 4.1; 1.6.5 for NetBeans 5.0 | |||||
| bundles 1.6.5 for NetBeans 5.0 and 5.5 | |||||
| </td> | </td> | ||||
| </tr> | </tr> | ||||
| <tr> | <tr> | ||||
| @@ -6443,7 +6443,7 @@ | |||||
| </th> | </th> | ||||
| <td colspan="1" rowspan="1" | <td colspan="1" rowspan="1" | ||||
| valign="top" align="left"> | valign="top" align="left"> | ||||
| Sun Public License | |||||
| Common Development and Distribution License | |||||
| </td> | </td> | ||||
| </tr> | </tr> | ||||
| </table> | </table> | ||||
| @@ -1,34 +1,34 @@ | |||||
| <html> | |||||
| <head> | |||||
| <meta http-equiv="Content-Language" content="en-us"> | |||||
| <link rel="stylesheet" type="text/css" href="../stylesheets/style.css"> | |||||
| <title>Diagnostics Task</title> | |||||
| </head> | |||||
| <body> | |||||
| <h2><a name="echo">Diagnostics</a></h2> | |||||
| <h3>Diagnostics</h3> | |||||
| <p> | |||||
| Runs Ant's <code>-diagnostics</code> code inside Ant itself. This is good for | |||||
| debugging Ant's configuration under an IDE. | |||||
| <h3>Examples</h3> | |||||
| <pre> | |||||
| <target name="diagnostics" description="diagnostics"> | |||||
| <diagnostics/> | |||||
| </target> | |||||
| </pre> | |||||
| <p> | |||||
| Prints out the current diagnostics dump. | |||||
| </p> | |||||
| <hr> | |||||
| <p align="center">Copyright © 2006 The Apache Software Foundation. All rights | |||||
| Reserved.</p> | |||||
| </body> | |||||
| </html> | |||||
| <html> | |||||
| <head> | |||||
| <meta http-equiv="Content-Language" content="en-us"> | |||||
| <link rel="stylesheet" type="text/css" href="../stylesheets/style.css"> | |||||
| <title>Diagnostics Task</title> | |||||
| </head> | |||||
| <body> | |||||
| <h2><a name="echo">Diagnostics</a></h2> | |||||
| <h3>Diagnostics</h3> | |||||
| <p> | |||||
| Runs Ant's <code>-diagnostics</code> code inside Ant itself. This is good for | |||||
| debugging Ant's configuration under an IDE. | |||||
| <h3>Examples</h3> | |||||
| <pre> | |||||
| <target name="diagnostics" description="diagnostics"> | |||||
| <diagnostics/> | |||||
| </target> | |||||
| </pre> | |||||
| <p> | |||||
| Prints out the current diagnostics dump. | |||||
| </p> | |||||
| <hr> | |||||
| <p align="center">Copyright © 2006 The Apache Software Foundation. All rights | |||||
| Reserved.</p> | |||||
| </body> | |||||
| </html> | |||||
| @@ -378,4 +378,4 @@ That JVM can be started from <code><exec></code> if required.</p> | |||||
| Reserved.</p> | Reserved.</p> | ||||
| </body> | </body> | ||||
| </html> | |||||
| </html> | |||||
| @@ -463,4 +463,4 @@ See <a href="../CoreTypes/resources.html">resources</a> to see the concrete synt | |||||
| Reserved.</p> | Reserved.</p> | ||||
| </body> | </body> | ||||
| </html> | |||||
| </html> | |||||
| @@ -585,4 +585,4 @@ | |||||
| </table> | </table> | ||||
| </body> | </body> | ||||
| </html> | |||||
| </html> | |||||
| @@ -395,4 +395,4 @@ developers.</p> | |||||
| Reserved.</p> | Reserved.</p> | ||||
| </body> | </body> | ||||
| </html> | |||||
| </html> | |||||