I’m seeing an issue upgrading from gatling plugin 3.1 to 4.2 with “No simulations to run”
from
<gatling-plugin.version>3.1.0</gatling-plugin.version>
to
<gatling-plugin.version>4.2.9</gatling-plugin.version>
then I get this error,
[ERROR] No simulations to run
If I switch back to 3.1.0 the test runs fine.
Also it is noted the test-class folder only have resources, none of the classes compile with 4.2.9
Plugin config
<plugin> <!-- https://gatling.io/docs/gatling/reference/current/extensions/maven_plugin/ -->
<groupId>io.gatling</groupId>
<artifactId>gatling-maven-plugin</artifactId>
<version>${gatling-plugin.version}</version>
<configuration>
<!-- https://gatling.io/docs/gatling/reference/current/extensions/maven_plugin/#working-with-gatling-enterprise-self-hosted -->
<runMultipleSimulations>true</runMultipleSimulations>
<!-- The following command is to run one simulation at time-->
<!-- $ mvn clean verify -DperformanceTestUtil.environment=dev -Dgatling.simulationClass=performancetest.simulations.ProcedureMacroSimulation
-->
<includes>
<include>scala.performancetest.simulations.InteractionSimulation</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin