Maven 3 Plugin Getting Started
Getting Started
Very quick start
Codehaus Cargo can be directly run on any existing Maven J2EE, Java EE or Jakarta EE project (WAR, EAR or other) by running:
mvn clean verify org.codehaus.cargo:cargo-maven3-plugin:run
This will create a default Jetty 9.x installed local container and start it using the Cargo Maven 3 plugin with your Maven 3 project's deployable (a WAR, for example) deployed to it; so you can run manual tests (as a first introduction).
What is magic is that if you now want to run the same tests with Tomcat 9.x you simply need to run (in one line):
mvn clean verify org.codehaus.cargo:cargo-maven3-plugin:run -Dcargo.maven.containerId=tomcat9x
That command will automatically:
- Download the Maven artifact for the version of Tomcat 9.x that our Continous Integration has validated as working fine
- Instantiate the container
- Create a local configuration with your application
- ... and, run it
To use a specific version of Tomcat 9.x, you simply need to run (in one line):
mvn clean verify org.codehaus.cargo:cargo-maven3-plugin:run -Dcargo.maven.containerId=tomcat9x -Dcargo.maven.containerUrl=https://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat/9.0.45/tomcat-9.0.45.zip
This time, the command will automatically download Tomcat 9.0.45 from the specified URL instead, taking into account any proxy server setting you would have in Maven 3, and will it in the default directory (see the Maven 3 Plugin Reference Guide for details), so it won't get downloaded when you run the same command twice.
If you now want to run this time on WildFly 20.x with with the HTTP port set to 9000
, run:
mvn clean verify org.codehaus.cargo:cargo-maven3-plugin:run -Dcargo.maven.containerId=wildfly20x -Dcargo.maven.containerUrl=https://download.jboss.org/wildfly/20.0.1.Final/wildfly-20.0.1.Final.zip -Dcargo.servlet.port=9000
As you can see, Codehaus Cargo's main advantage is that the commands and configuration remains the same for any version of any supported container - be it Tomcat, Jetty, JBoss, JOnAS, GlassFish, WebLogic, WildFly, etc.
Like it? Well, keep on reading, then!
More examples
As usual the best way to learn to use a tool is through examples.
We have several Maven 3 Archetypes that contain sample Maven 3 projects with different use cases for the Codehaus Cargo Maven 3 plugin, we would really recommend that you check them out. For more details, read here: Maven 3 Archetypes.
In addition here are the typical uses cases covered by the plugin:
- Starting and stopping a container
- Deploying to a running container
- Generating a container configuration deployment structure
- Merging WAR files
The Cargo Maven plugin in detail
Here are the different goals available to call on this plugin:
Goals | Description |
---|---|
| Start a container. That goal will:
Note: A container that's started with |
| Start a container and wait for the user to press
|
| Stop a container. |
| Stop and start again a container. If the container was not running before calling cargo:restart , it will simply be started. |
| Create the configuration for a local container, without starting it. Note: If the plugin configuration requires so, the |
| Package the local container. |
cargo:daemon-start | Start a container via the daemon. Read more on: Cargo Daemon Note: The |
cargo:daemon-stop | Stop a container via the daemon. Read more on: Cargo Daemon |
| Deploy a deployable to a running container. Note: The |
| Undeploy a deployable from a running container. |
| Start a deployable already installed in a running container. |
| Stop a deployed deployable without undeploying it. |
| Undeploy and deploy again a deployable. If the deployable was not deployed before calling |
| Merge several WAR files into one. |
| Installs a container distribution, either downloaded using a URL or defined as a Maven artifact, on the file system. Note: If the plugin configuration requires so, the |
| Get help (list of available goals, available options, etc.). |
The configuration elements are described in the Reference Guide section.