From: dion g. <dio...@us...> - 2005-11-15 13:25:22
|
diongillard 05/11/15 05:25:16 Modified: was5/xdocs properties.xml Log: Add uninstallApp settings Revision Changes Path 1.18 +71 -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.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- properties.xml 15 Nov 2005 13:12:47 -0000 1.17 +++ properties.xml 15 Nov 2005 13:25:16 -0000 1.18 @@ -18,6 +18,7 @@ <li><a href="#serverStatus_Settings">Settings for the was5:serverStatus 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><a href="#uninstallApp_Settings">Settings for the was5:uninstallApp goal.</a></li> <li>More are yet to be documented</li> </ul> </p> @@ -68,6 +69,13 @@ </td> </tr> <tr> + <td>maven.was5.port</td> + <td>Yes</td> + <td> + This is the administration TCP port on the host to connect to. + </td> + </tr> + <tr> <td>maven.was5.profile</td> <td>Yes</td> <td> @@ -222,6 +230,7 @@ <td>Yes</td> <td> This is the administration TCP port on the host to connect to. + Defaults to ${maven.was5.port} </td> </tr> <tr> @@ -282,6 +291,7 @@ <td>Yes</td> <td> This is the administration TCP port on the host to connect to. + Defaults to ${maven.was5.port} </td> </tr> <tr> @@ -362,6 +372,7 @@ <td>Yes</td> <td> Only specified if the conntype is specified. This is the port on the host to connect to. + Defaults to ${maven.was5.port} </td> </tr> <tr> @@ -538,6 +549,7 @@ <td>Yes</td> <td> This is the administration TCP port on the host to connect to. + Defaults to ${maven.was5.port} </td> </tr> <tr> @@ -582,5 +594,64 @@ </tr> </table> </section> + <section name="uninstallApp Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.uninstallApp.application</td> + <td>Yes</td> + <td> + The name of the application for uninstall. + Defaults to ${maven.was5.installed.application} + </td> + </tr> + <tr> + <td>maven.was5.uninstallApp.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.uninstallApp.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.uninstallApp.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.uninstallApp.port</td> + <td>Yes</td> + <td> + This is the administration TCP port on the host to connect to. + Defaults to ${maven.was5.port} + </td> + </tr> + <tr> + <td>maven.was5.uninstallApp.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 |