Hi all,
I'm using the Gatling Maven plugin to run my tests (Version 2.2.0 of both Gatling and the maven plugin):
I'm trying to update some configurations (examples below), however the settings are not passed to Gatling:
<plugin>
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<simulationsFolder>src/main/scala</simulationsFolder>
<configFolder>src/main/resources</configFolder>
<jvmArgs>
<jvmArg>-Xmx2048m</jvmArg>
</jvmArgs>
</configuration>
</execution>
</executions>
</plugin>
I am however able to pass different folder locations on the command line as follows - but obviously I'd rather specify these in the pom.xml:
mvn gatling:execute -Dgatling.simulationsFolder=src/main/scala -Dgatling.configFolder=src/main/resources
Has anyone got any suggestions as to why this might not be working?
Thanks in advance.