Maven Plugin
The Maven plugin allows you to run Gatling tests from the command line, without the bundle, as well as to package your simulations for Gatling Enterprise
Using this plugin, Gatling can be launched when building your project, for example with your favorite Continuous Integration (CI) solution. This plugin can also be used to package your Gatling project to run it on Gatling Enterprise.
Versions
Check out available versions on Maven Central.
Beware that milestones (M versions) are not documented for OSS users and are only released for Gatling Enterprise customers.
Setup
In your pom.xml
, add:
<dependencies>
<dependency>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-charts-highcharts</artifactId>
<version>MANUALLY_REPLACE_WITH_LATEST_VERSION</version>
<scope>test</scope>
</dependency>
</dependencies>
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>MANUALLY_REPLACE_WITH_LATEST_VERSION</version>
</plugin>
Cloning or downloading one of our demo projects on GitHub is definitely the fastest way to get started:
scala-maven-plugin
when using Gatling with Simulations written in Scala.Configuration
The plugin supports many configuration options, eg:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>MANUALLY_REPLACE_WITH_LATEST_VERSION</version>
<configuration>
<simulationClass>foo.Bar</simulationClass>
</configuration>
</plugin>
See each goal’s section below for the relevant configuration options.
Usage
Running your simulations
You can directly launch the gatling-maven-plugin
with the test
goal:
mvn gatling:test
Use mvn gatling:help -Ddetail=true -Dgoal=test
to print the description of all the available configuration options on
the test
goal.
Includes/Excludes filters
When running multiple simulations, you can control which simulations will be triggers with the includes
and excludes
filters. Those use the ant pattern syntax and are matched against class names. Also note that those filters are only
applied against the classes that were compiled from sources in the project where the plugin is set.
<configuration>
<!-- ... -->
<runMultipleSimulations>true</runMultipleSimulations>
<includes>
<include>my.package.*</include>
</includes>
<excludes>
<exclude>my.package.IgnoredSimulation</exclude>
</excludes>
</configuration>
Running the Gatling Recorder
You can launch the Gatling Recorder:
mvn gatling:recorder
Use mvn gatling:help -Ddetail=true -Dgoal=recorder
to print the description of all the available configuration options
on the recorder
goal.
Working with Gatling Enterprise Cloud
API tokens
You need to configure an an API token for most
of the tasks regarding Gatling Enterprise Cloud. The API token needs the Configure
role.
Since you probably don’t want to include you secret token in your source code, you can configure it using either:
- the
GATLING_ENTERPRISE_API_TOKEN
environment variable - the
gatling.enterprise.apiToken
Java System property
If really needed, you can also configure it in your pom.xml:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-maven-plugin.version}</version>
<configuration>
<apiToken>YOUR_API_TOKEN</apiToken>
</configuration>
</plugin>
Create or start a simulation
You can, using the enterpriseStart
goal:
- configure a new simulation on Gatling Enterprise Cloud, upload your packaged code, and immediately start the simulation
- or, for a simulation already configured on Gatling Enterprise Cloud, upload any updated code and immediately start the simulation
Configure
role.Quick usage:
- configure and start a new simulation with
mvn gatling:enterpriseStart
, you will be prompted to choose all required options. This will also print the simulationId of the newly configured simulation. - run the simulation again with
mvn gatling:enterpriseStart -Dgatling.enterprise.simulationId=<YOUR_SIMULATION_ID>
.
List of configurations used by this task:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-maven-plugin.version}</version>
<configuration>
<!-- Simulation that needs to be started, you will be able to create a new simulation if empty -->
<!-- You can also use the gatling.enterprise.simulationId system property -->
<simulationId>YOUR_SIMULATION_ID</simulationId>
<!-- Default package when creating a new simulation -->
<!-- You can also use the gatling.enterprise.packageId system property -->
<packageId>YOUR_PACKAGE_ID</packageId>
<!-- Default team when creating a new simulation -->
<!-- You can also use the gatling.enterprise.teamId system property -->
<teamId>YOUR_TEAM_ID</teamId>
<!-- Fully-qualified class name of the simulation used when creating a new simulation -->
<!-- You can also use the gatling.simulationClass system property -->
<simulationClass>io.gatling.BasicSimulation</simulationClass>
<!-- Custom system properties used when running the simulation on Gatling Enterprise -->
<simulationSystemProperties>
<key1>VALUE_1</key1>
<key2>VALUE_2</key2>
</simulationSystemProperties>
</configuration>
</plugin>
You can run it with the command:
mvn gatling:enterpriseStart
If a simulationId
is set, the task will start the simulation on Gatling Enterprise.
If no simulationId
is set, the task will ask you if you want to start or create a new simulation. If you choose
create, you will be able to configure a new simulation (with the configured packageId
, teamId
, simulationClass
as
default), then start it. If you choose start, you will be able to start an already existing simulation on Gatling
Enterprise.
If you are on a CI environment, you don’t want to handle interaction with the plugin. You should then run Maven in batch mode. In batch mode, no input will be asked from the user, the new simulation will be created using only the configuration.
Package
You can directly package your simulations for Gatling Enterprise Cloud using the enterprisePackage
goal:
mvn gatling:enterprisePackage
This will generate the target/<artifactId>-<version>-shaded.jar
package which you can then
upload to the Cloud.
Package and upload
You can also create and upload the package in a single command using the enterpriseUpload
goal.
Configure
role.You must already have configured a package. Copy the package ID from the Packages table, or copy the simulation ID linked to the package from the Simulations table.
Configure the package ID or simulation ID on the plugin:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-maven-plugin.version}</version>
<configuration>
<packageId>YOUR_PACKAGE_ID</packageId>
<!-- If packageId is missing, the task will use the package linked to the simulationId -->
<simulationId>YOUR_SIMULATION_ID</simulationId>
</configuration>
</plugin>
You can also configure either of those using Java System properties:
- packageId:
gatling.enterprise.packageId
- simulationId:
gatling.enterprise.simulationId
Then package and upload your simulation to gatling Enterprise Cloud:
mvn gatling:enterpriseUpload
Working with Gatling Enterprise Self-Hosted
Build from sources
Once you have configured the Maven plugin on your project, Gatling Enterprise Self-Hosted can build it from sources without additional configuration. Add your source repository and configure your simulation to build from sources using Maven.
To make sure your setup is correct, you can run the packaging command and check that you get a jar containing all the
classes and extra dependencies of your project in target/<artifactId>-<version>-shaded.jar
:
mvn gatling:enterprisePackage
Publish to a binary repository
Alternatively, you can package your simulations and publish them to a binary repository (JFrog Artifactory, Sonatype Nexus or AWS S3).
Configure the repository
and/or snapshotRepository
block, depending on whether you want to deploy releases or snapshots.
<distributionManagement>
<repository>
<id>your.releases.repository.id</id>
<url>REPLACE_WITH_YOUR_RELEASES_REPOSITORY_URL</url>
</repository>
<snapshotRepository>
<id>your.snapshots.repository.id</id>
<url>REPLACE_WITH_YOUR_SNAPSHOTS_REPOSITORY_URL</url>
</snapshotRepository>
</distributionManagement>
Bind the gatling:enterprisePackage
goal to the Maven lifecycle in the plugin configuration:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>enterprisePackage</goal>
</goals>
</execution>
</executions>
</plugin>
The packaged artifact will be automatically attached to your project and deployed with the shaded
classifier when you publish it:
mvn deploy
Integrating with the Maven lifecycle
The plugin’s goals can also be bound to the Maven lifecycle phases by configuring an execution block in the plugin configuration:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>MANUALLY_REPLACE_WITH_LATEST_VERSION</version>
<executions>
<execution>
<goals>
<goal>test</goal>
<goal>enterprisePackage</goal>
</goals>
</execution>
</executions>
</plugin>
By default:
test
will be bound to theintegration-test
phase, e.g. it will be triggered bymvn integration-test
ormvn verify
enterprisePackage
will be bound to thepackage
phase, e.g. it will be triggered bymvn package
Overriding the logback.xml file
You can either have a logback-test.xml
that has precedence over the embedded logback.xml
file, or add a JVM option -Dlogback.configurationFile=myFilePath
.
Sources
If you’re interested in contributing, you can find the gatling-maven-plugin sources on GitHub.