From: dion g. <dio...@us...> - 2005-11-15 06:31:39
|
diongillard 05/11/14 22:31:32 Modified: was5/xdocs properties.xml Log: Add installApp docs Revision Changes Path 1.13 +69 -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.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- properties.xml 15 Nov 2005 05:49:04 -0000 1.12 +++ properties.xml 15 Nov 2005 06:31:32 -0000 1.13 @@ -12,6 +12,7 @@ <ul> <li><a href="#Basic_Settings">Settings used across many goals.</a></li> <li><a href="#ejbDeploy_Settings">Settings for the was5:ejbDeploy goal.</a></li> + <li><a href="#installApp_Settings">Settings for the was5:installApp goal.</a></li> <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="#startServer_Settings">Settings for the was5:startServer goal.</a></li> @@ -513,5 +514,73 @@ </tr> </table> </section> + <section name="listApps Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.installApp.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> + <th>maven.was5.installApp.ear</th> + <th>Yes</th> + <th> + The location of the ear file on the server to install. + Defaults to ${maven.build.dir}/${maven.final.name}.ear + </th> + </tr> + <tr> + <td>maven.was5.installApp.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.installApp.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.installApp.port</td> + <td>Yes</td> + <td> + This is the administration TCP port on the host to connect to. + </td> + </tr> + <tr> + <td>maven.was5.installApp.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> + <tr> + <td>maven.was5.installApp.options</td> + <td>Yes</td> + <td> + Options to pass to wsadmin when installing the application. + See <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v5r1/index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/rxml_taskoptions.html">WebSphere Application Server documentation</a> + for more information. + Defaults to -appname ${maven.was5.installed.application} + </td> + </tr> + </table> + </section> </body> </document> \ No newline at end of file |