Add description to test run and also change output folder name

Gatling version 3.14.3 JAVA / Maven Windows

The only reference I could find to setting the description and the output folder was this SO article:

Gatling report description customization - Stack Overflow

The article says to use these environment definitions when running the test via Maven:

-Dgatling.core.runDescription=My-custom-description-here
-Dgatling.core.outputDirectoryBaseName=MyReportDirectory

Neither of these had any effect on my maven:test. How can I change the description of the test, and also how can I set the output folder to be used for the run results?

Is there someplace in the documentation that you can point me towards?

FYI This works (on Windows with IntelliJ) to set which simulation to run:

mvn gatling:test "-Dgatling.simulationClass=myproject.mypackage.MySpecificSimulationClass" 

These System properties were hacking some internal parameters used by the previous incarnation of the standalone bundle, so they are no longer supported.

You can use the gatling.runDescription config parameter on the gatling-maven-plugin.

Changing the output directory is not supported.

Thanks! I just updated the SO article to include this information.