From: dion g. <dio...@us...> - 2005-11-15 13:41:16
|
diongillard 05/11/15 05:40:56 Modified: was5/xdocs properties.xml Log: Add stopApp settings Revision Changes Path 1.20 +86 -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.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- properties.xml 15 Nov 2005 13:34:17 -0000 1.19 +++ properties.xml 15 Nov 2005 13:40:56 -0000 1.20 @@ -18,6 +18,7 @@ <li><a href="#serverStatus_Settings">Settings for the was5:serverStatus goal.</a></li> <li><a href="#startApp_Settings">Settings for the was5:startApp goal.</a></li> <li><a href="#startServer_Settings">Settings for the was5:startServer goal.</a></li> + <li><a href="#stopApp_Settings">Settings for the was5:stopApp 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> @@ -589,6 +590,91 @@ </tr> </table> </section> + <section name="stopApp Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.stopApp.application</td> + <td>Yes</td> + <td> + The name of the application to stop. + Defaults to ${maven.was5.installed.application} + </td> + </tr> + <tr> + <td>maven.was5.stopApp.conntype</td> + <td>Yes</td> + <td> + 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. + Defaults to ${maven.was5.conntype} + </td> + </tr> + <tr> + <td>maven.was5.stopApp.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.stopApp.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.stopApp.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.stopApp.profile</td> + <td>Yes</td> + <td> + A script file to be executed before processing begins. + See <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/rxml_profiles.html">WebSphere AppServer documentation</a> + for more detail. + </td> + </tr> + <tr> + <td>maven.was5.stopApp.properties</td> + <td>Yes</td> + <td> + A java properties file containing attributes to set in the JVM System properties. + See <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1//index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/rxml_propscript.html">WebSphere AppServer documentation</a> + for more detail. + </td> + </tr> + <tr> + <td>maven.was5.stopApp.server</td> + <td>Yes</td> + <td> + The server on which the app to stop in installed. + Defaults to ${maven.was5.server} + </td> + </tr> + <tr> + <td>maven.was5.stopApp.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> <section name="stopServer Settings"> <table> <tr> |