From: dion g. <dio...@us...> - 2005-11-15 05:25:05
|
diongillard 05/11/14 21:24:57 Modified: was5/xdocs properties.xml Log: Add listApps settings Revision Changes Path 1.11 +67 -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.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- properties.xml 15 Nov 2005 04:01:37 -0000 1.10 +++ properties.xml 15 Nov 2005 05:24:57 -0000 1.11 @@ -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="#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> <li><a href="#stopServer_Settings">Settings for the was5:stopServer goal.</a></li> @@ -428,5 +429,71 @@ </tr> </table> </section> + <section name="listApps Settings"> + <table> + <tr> + <th>Property</th> + <th>Optional?</th> + <th>Description</th> + </tr> + <tr> + <td>maven.was5.listApps.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.listApps.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.listApps.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.listApps.port</td> + <td>Yes</td> + <td> + This is the administration TCP port on the host to connect to. + </td> + </tr> + <tr> + <td>maven.was5.listApps.profile</td> + <td>Yes</td> + <td> + A script file to be executed before processing begins. + Defaults to ${maven.was5.profile}. + </td> + </tr> + <tr> + <td>maven.was5.listApps.properties</td> + <td>Yes</td> + <td> + A java properties file containing attributes to set in the JVM System properties. + Defaults to ${maven.was5.properties}. + </td> + </tr> + <tr> + <td>maven.was5.listApps.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 |