From: dion g. <dio...@us...> - 2005-11-11 09:03:02
|
diongillard 05/11/11 01:02:56 Modified: was5/xdocs properties.xml Log: Added default property definitions and definitions for startServer goal Revision Changes Path 1.7 +78 -9 maven-plugins/was5/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/properties.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- properties.xml 2 Nov 2005 10:55:12 -0000 1.6 +++ properties.xml 11 Nov 2005 09:02:56 -0000 1.7 @@ -16,14 +16,16 @@ <td>maven.was5.conntype</td> <td>Yes</td> <td> - TODO. + Specifies the type of connection to be used. + The Default type is SOAP. The valid values are SOAP, RMI, JMS, and NONE. + NONE means that no server connection is made. </td> </tr> <tr> <td>maven.was5.failonerror</td> <td>Yes</td> <td> - TODO. + If set to true causes the build to stop if the task has an error. </td> </tr> <tr> @@ -45,14 +47,14 @@ <td>maven.was5.password</td> <td>Yes</td> <td> - TODO. + The password of the admin user to authenticate with for administrative access. </td> </tr> <tr> <td>maven.was5.quiet</td> <td>Yes</td> <td> - TODO. + If true, the task will not print any status information. </td> </tr> <tr> @@ -68,21 +70,21 @@ <td>maven.was5.statusPort</td> <td>Yes</td> <td> - TODO. + The TCP Port the server should send status messages to. </td> </tr> <tr> <td>maven.was5.trace</td> <td>Yes</td> <td> - TODO. + If true, the task with print trace information. </td> </tr> <tr> <td>maven.was5.username</td> <td>Yes</td> <td> - TODO. + The id of the admin user to authenticate with for administrative access. </td> </tr> <tr> @@ -139,7 +141,7 @@ </tr> </table> </section> - <section name="Script settings"> + <section name="runScript settings"> <table> <tr> <th>Property</th> @@ -211,10 +213,77 @@ <td>maven.was5.script.username</td> <td>Yes</td> <td> - The user ID to authenticate with the server. + The id of the admin user to authenticate with for administrative access. </td> </tr> </table> </section> + <section name="startServer settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.startServer.failonerror</td> + <td>Yes</td> + <td> + If set to true causes the build to stop if the task has an error. + Defaults to ${maven.was5.failonerror} + </td> + </tr> + <tr> + <td>maven.was5.startServer.password</td> + <td>Yes</td> + <td> + The password of the admin user to authenticate with for administrative access. + Defaults to ${maven.was5.password} + </td> + </tr> + <tr> + <td>maven.was5.startServer.quiet</td> + <td>Yes</td> + <td> + If true, the task will not print any status information. + Defaults to ${maven.was5.quiet} + </td> + </tr> + <tr> + <td>maven.was5.startServer.server</td> + <td>Yes</td> + <td> + The server to start. Defaults to ${maven.was5.server} + </td> + </tr> + <tr> + <td>maven.was5.startServer.statusPort</td> + <td>Yes</td> + <td> + The TCP Port the server should send status messages to. + Defaults to ${maven.was5.statusPort} + </td> + </tr> + <tr> + <td>maven.was5.startServer.trace</td> + <td>Yes</td> + <td> + If true, the task with print trace information. + Defaults to ${maven.was5.trace} + </td> + </tr> + <tr> + <td>maven.was5.startServer.username</td> + <td>Yes</td> + <td> + The id of the admin user to authenticate with for administrative access. + Defaults to ${maven.was5.username} + </td> + </tr> +<!-- +maven.was5.startServer.failonerror=${maven.was5.failonerror} +--> + </table> + </section> </body> </document> \ No newline at end of file |