From: dion g. <dio...@us...> - 2005-11-15 01:11:35
|
diongillard 05/11/14 17:11:26 Modified: was5/xdocs properties.xml Log: Document stopServer properties Revision Changes Path 1.9 +91 -0 maven-plugins/was5/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/was5/xdocs/properties.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- properties.xml 14 Nov 2005 23:33:03 -0000 1.8 +++ properties.xml 15 Nov 2005 01:11:25 -0000 1.9 @@ -14,6 +14,7 @@ <li><a href="#ejbDeploy_Settings">Settings for the was5:ejbDeploy goal.</a></li> <li><a href="#runScript_Settings">Settings for the was5:runScript goal.</a></li> <li><a href="#startServer_Settings">Settings for the was5:startServer goal.</a></li> + <li><a href="#stopServer_Settings">Settings for the was5:stopServer goal.</a></li> <li>More are yet to be documented</li> </ul> </p> @@ -295,5 +296,95 @@ </tr> </table> </section> + <section name="stopServer Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.stopServer.conntype</td> + <td>Yes</td> + <td> + The type of connection to be used. The Default type is SOAP. The + valid values are SOAP, RMI, and NONE. NONE means that no server + connection is made. + Defaults to ${maven.was5.conntype}. + </td> + </tr> + <tr> + <td>maven.was5.stopServer.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.stopServer.host</td> + <td>Yes</td> + <td> + The hostname of the machine to connect to. + Defaults to ${maven.was5.host}. + </td> + </tr> + <tr> + <td>maven.was5.stopServer.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.stopServer.port</td> + <td>Yes</td> + <td> + This is the administration TCP port on the host to connect to. + </td> + </tr> + <tr> + <td>maven.was5.stopServer.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.stopServer.server</td> + <td>Yes</td> + <td> + The server to stop. + Defaults to ${maven.was5.server} + </td> + </tr> + <tr> + <td>maven.was5.stopServer.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.stopServer.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.stopServer.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> + </table> + </section> </body> </document> \ No newline at end of file |