Executing Gatling Tests with The SBT + Java RedLine13 Plugin
We have created a plugin for RedLine13 users to execute Gatling tests using SBT + Java. This is accomplished by first using SBT Assembly to package a JAR prepared with everything required to run the tests. sbt “it:assembly” After the package is created you can test locally java -jar target/scala-2.11/gatling-tests-as-jar-1.0.jar -s example.SomeGatlingSimulation A community member provided an example project that can be used to model here. After we have used SBT to package our JAR, we can take the generated JARRead More →