From: dion g. <dio...@us...> - 2005-11-15 13:34:29
|
diongillard 05/11/15 05:34:17 Modified: was5/xdocs properties.xml Log: Add startApp settings Revision Changes Path 1.19 +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.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- properties.xml 15 Nov 2005 13:25:16 -0000 1.18 +++ properties.xml 15 Nov 2005 13:34:17 -0000 1.19 @@ -16,6 +16,7 @@ <li><a href="#listApps_Settings">Settings for the was5:listApps goal.</a></li> <li><a href="#runScript_Settings">Settings for the was5:runScript goal.</a></li> <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="#stopServer_Settings">Settings for the was5:stopServer goal.</a></li> <li><a href="#uninstallApp_Settings">Settings for the was5:uninstallApp goal.</a></li> @@ -439,6 +440,91 @@ </tr> </table> </section> + <section name="startApp Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.startApp.application</td> + <td>Yes</td> + <td> + The name of the application to start. + Defaults to ${maven.was5.installed.application} + </td> + </tr> + <tr> + <td>maven.was5.startApp.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.startApp.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.startApp.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.startApp.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.startApp.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.startApp.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.startApp.server</td> + <td>Yes</td> + <td> + The server on which the app to start in installed. + Defaults to ${maven.was5.server} + </td> + </tr> + <tr> + <td>maven.was5.startApp.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="startServer Settings"> <table> <tr> |