Plugin Documentation

Goals available for this plugin:

GoalDescription
tomcat6:deployDeploy a WAR to Tomcat.
tomcat6:deploy-onlyDeploy a WAR to Tomcat witjout forking the package lifecycle
tomcat6:explodedDeploy an exploded WAR to Tomcat.
tomcat6:infoLists information about the Tomcat version, OS, and JVM properties.
tomcat6:inplaceDeploy a WAR in-place to Tomcat.
tomcat6:listLists all the currently deployed web applications in Tomcat.
tomcat6:redeployRedeploy a WAR in Tomcat. Deploy with forcing update flag to true
tomcat6:reloadReload a WAR in Tomcat.
tomcat6:resourcesLists JNDI resources in Tomcat.
tomcat6:rolesLists security roles in Tomcat.
tomcat6:runRuns the current project as a dynamic web application using an embedded Tomcat server.
tomcat6:run-warRuns the current project as a packaged web application using an embedded Tomcat server.
tomcat6:run-war-onlyRuns the current project as a packaged web application using an embedded Tomcat server without forking the package cycle.
tomcat6:sessionsLists session information for a WAR in Tomcat.
tomcat6:shutdown

Shuts down all possibly started embedded tomcat servers. This will be automatically down through a shutdown hook or you may call this Mojo to shut them down explictly.

By default the shutdown goal is not bound to any phase. For integration tests you might want to bind it to post-integration-test.

tomcat6:startStart a WAR in Tomcat.
tomcat6:stopStop a WAR in Tomcat.
tomcat6:undeployUndeploy a WAR from Tomcat.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven2.0.8
JDK1.5
MemoryNo minimum requirement.
Disk SpaceNo minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.tomcat.maven</groupId>
          <artifactId>tomcat6-maven-plugin</artifactId>
          <version>2.0-beta-1</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.apache.tomcat.maven</groupId>
        <artifactId>tomcat6-maven-plugin</artifactId>
        <version>2.0-beta-1</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"