Goals available for this plugin:
Goal | Description |
---|---|
t7:run | Runs a Tomcat 7 (or 6) instance in the same process as the maven
build. Multiple BootstrapHolder not possible. Tomcat
registers Classloader at the MBeanServer. |
t7:run-forked | Runs a Tomcat 7 (or 6) instance in an separate process (jvm), other than the maven build. |
t7:stop | Stops the Tomcat instance. |
t7:stop-forked | Stops the forked Tomcat instance. |
The following specifies the minimum requirements to run this Maven plugin:
Maven | 2.2 |
JDK | 1.6 |
Memory | No minimum requirement. |
Disk Space | No minimum requirement. |
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>com.googlecode.t7mp</groupId> <artifactId>maven-t7-plugin</artifactId> <version>0.9.10-SNAPSHOT</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>com.googlecode.t7mp</groupId> <artifactId>maven-t7-plugin</artifactId> <version>0.9.10-SNAPSHOT</version> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"