tomcat6:list
Full name:
org.apache.tomcat.maven:tomcat6-maven-plugin:2.0-beta-1:list
Description:
Lists all the currently deployed web applications in Tomcat.
Attributes:
- Requires a Maven project to be executed.
Required Parameters
Name | Type | Since | Description |
---|---|---|---|
charset | String | - | The URL encoding charset to use when communicating with Tomcat
manager. Default value is: ISO-8859-1. |
path | String | - | The webapp context path to use for the web application being run.
This must always start with a forward-slash ('/'). Default value is: /${project.artifactId}. |
url | URL | - | The full URL of the Tomcat manager instance to use. Default value is: http://localhost:8080/manager. |
Optional Parameters
Name | Type | Since | Description |
---|---|---|---|
password | String | 1.0-alpha-2 | The password to use for deployment |
server | String | - | The server id in settings.xml to use when authenticating with
Tomcat manager, or null to use defaults of username
admin and no password. |
username | String | 1.0-alpha-2 | The tomcat username to use for deployment |
Parameter Details
The URL encoding charset to use when communicating with Tomcat
manager.
- Type: java.lang.String
- Required: Yes
- Expression: ${maven.tomcat.charset}
- Default: ISO-8859-1
The password to use for deployment
- Type: java.lang.String
- Since: 1.0-alpha-2
- Required: No
- Expression: ${tomcat.password}
path:
The webapp context path to use for the web application being run.
This must always start with a forward-slash ('/').
- Type: java.lang.String
- Required: Yes
- Expression: ${maven.tomcat.path}
- Default: /${project.artifactId}
The server id in settings.xml to use when authenticating with
Tomcat manager, or null to use defaults of username
admin and no password.
- Type: java.lang.String
- Required: No
- Expression: ${maven.tomcat.server}
url:
The full URL of the Tomcat manager instance to use.
- Type: java.net.URL
- Required: Yes
- Expression: ${maven.tomcat.url}
- Default: http://localhost:8080/manager
The tomcat username to use for deployment
- Type: java.lang.String
- Since: 1.0-alpha-2
- Required: No
- Expression: ${tomcat.username}