From: Andy J. <and...@us...> - 2003-10-29 21:29:44
|
andy_jefferson 03/10/29 13:29:43 Modified: tasks project.xml tasks/xdocs index.xml Log: Final updates to allow full build Revision Changes Path 1.3 +1 -1 maven-plugins/tasks/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/project.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- project.xml 28 Oct 2003 21:37:06 -0000 1.2 +++ project.xml 29 Oct 2003 21:29:43 -0000 1.3 @@ -4,7 +4,7 @@ <!-- extend>../project.xml</extend --> <pomVersion>3</pomVersion> <id>maven-tasks-plugin</id> - <name>Maven Tasks Plug-in</name> + <name>Tasks Plug-in</name> <currentVersion>1.0</currentVersion> <organization> <name>SourceForge</name> 1.2 +0 -1 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- index.xml 28 Oct 2003 21:27:34 -0000 1.1 +++ index.xml 29 Oct 2003 21:29:43 -0000 1.2 @@ -12,7 +12,6 @@ In order to use this plugin, simply create a <code>tasks.xml</code> file in your <code>xdocs</code> directory. Here's an example of a typical <code>tasks.xml</code>, showing the syntax: - </p> <source><![CDATA[ <document> <properties> |
From: Jeff J. <jef...@us...> - 2006-08-05 04:02:33
|
jeffjensen 06/08/04 21:02:32 Modified: tasks/xdocs index.xml Log: Updated example tasks.xml file to show all attributes and subcategory element. Add installation instructions and reorg. Revision Changes Path 1.3 +66 -6 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- index.xml 29 Oct 2003 21:29:43 -0000 1.2 +++ index.xml 5 Aug 2006 04:02:32 -0000 1.3 @@ -4,30 +4,90 @@ <properties> <title>Maven Tasks Plug-in</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> <section name="Maven Tasks Plug-in"> <p> - In order to use this plugin, simply create a <code>tasks.xml</code> - file in your <code>xdocs</code> directory. Here's an example of a - typical <code>tasks.xml</code>, showing the syntax: + This plugin generates an HTML page of tasks + from a tasks XML file. + </p> + </section> + <section name="Instructions"> + <ol> + <li> + Install the plugin. + Preferred manner is with a dependency in the project.xml file + (use the desired plugin version, of course): +<source><![CDATA[ +<dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-tasks-plugin</artifactId> + <version>1.3.0</version> + <type>plugin</type> +</dependency> +]]></source> + </li> + <li> + Add the tasks plugin to the report section in the project.xml file: +<source><![CDATA[ +<reports> + ... + <report>maven-tasks-plugin</report> + ... +</reports> +]]></source> + </li> + <li> + Create a tasks.xml file in the project's xdocs directory + (see layout in format section below). + <p> + Note the output file name defaults to "tasks-report.html". + Check the properties for how to customize it. + </p> + </li> + </ol> + </section> + <section name="tasks.xml Format"> + <p> + Here's an example of a typical <code>tasks.xml</code>, + showing the syntax: <source><![CDATA[ <document> <properties> - <title>Page title</title> + <title>Tasks</title> <author email="an...@aj...">Andy Jefferson</author> + <author email="jef...@so...">Jeff Jensen</author> </properties> <body> - <category name="GUI"> - <task creator="andy_jefferson" assignedto="fred" startdate="25/10/2003" enddate="25/11/2003" effort="30 hours" status="In Progress">Provide a Swing GUI</task> + <category name="GUI" description="The GUI component" owner="Steve"> + <task creator="andy_jefferson" assignedto="fred" startdate="25/10/2003" enddate="25/11/2003" effort="30 hours" status="In Progress" version"1"> + Provide a Swing GUI. + </task> + </category> + + <category name="Maven" description="The GUI component" owner="Steve"> + <subcategory name="Builds"> + <task creator="jeffjensen" assignedto="mattpurland" startdate="25/8/2006" enddate="28/8/2006" effort="1 hour" status="In Progress" version"1"> + Setup build for new 2.1 codeline. + </task> + </subcategory> + <subcategory name="FAQs"> + <task creator="jeffjensen" assignedto="jeffjensen" startdate="25/8/2006" enddate="28/8/2006" effort="1 hour" status="In Progress" version"1"> + Update Testing FAQ with dbUnit info. + </task> + </subcategory> </category> </body> </document> ]]></source> </p> + <p> + Note the optional subcategory element. + </p> </section> </body> </document> |
From: Jeff J. <jef...@us...> - 2006-08-10 03:26:56
|
jeffjensen 06/08/09 20:26:55 Modified: tasks/xdocs index.xml Log: Correct URL. Revision Changes Path 1.5 +1 -1 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- index.xml 10 Aug 2006 03:07:23 -0000 1.4 +++ index.xml 10 Aug 2006 03:26:55 -0000 1.5 @@ -93,7 +93,7 @@ <li>Category can have either task or subcategory elements.</li> <li> Use the XML Schema for tasks.xml for verification. - <a href="/xsd/tasks-1_0_0.xsd" target="_blank">View the tasks schema here.</a> + <a href="xsd/tasks-1_0_0.xsd" target="_blank">View the tasks schema here.</a> </li> </ul> </section> |
From: Jeff J. <jef...@us...> - 2006-08-10 03:32:50
|
jeffjensen 06/08/09 20:32:49 Modified: tasks/xdocs index.xml Log: Correct schema URL. Revision Changes Path 1.6 +1 -1 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- index.xml 10 Aug 2006 03:26:55 -0000 1.5 +++ index.xml 10 Aug 2006 03:32:49 -0000 1.6 @@ -57,7 +57,7 @@ <document xmlns="http://maven-plugins.sourceforge.net/tasks/1_0_0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven-plugins.sourceforge.net/tasks/1_0_0 http://maven-plugins.sourceforge.net/tasks/xsd/tasks-1_0_0.xsd"> + xsi:schemaLocation="http://maven-plugins.sourceforge.net/tasks/1_0_0 http://maven-plugins.sourceforge.net/maven-tasks-plugin/xsd/tasks-1_0_0.xsd"> <properties> <title>Tasks</title> |