我希望在不重新构建整个项目的情况下运行我的gatling测试。
在我的maven-gatling-plugin配置中,我有以下内容
<executions>
<execution>
<id>load-testing</id>
<phase>integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<simulationClass>maven.integration.MySimu</simulationClass>
</configuration>
</execution>
</executions>有没有我可以使用的不构建项目的阶段?
发布于 2018-08-24 17:50:32
我的解决方案是将我所有的模拟放在一个独立的项目中(而不是将它们放在我想要测试的项目中)。
然后我就可以用mvn gatling:execute执行模拟了
https://stackoverflow.com/questions/51836313
复制相似问题