I'm building a project jmeter with maven. In general I pass some argument in input.
Typically I build and run with an example command as the following:
mvn clean verify "-DNrOperators=3" -DProject.jmx=Myproject.jmx -Dtarget=Test
It produces some folders in target : logs, results, testFiles and I see the results in those folders.
Now I would like to make the project portable. That is, once the project has been built by maven on an host A , I would execute the project on another host B, without any rebuild activity, but only executing the built project
How can I do it?
Thanks
The steps you need to do are:
.m2folder in your user home foldermvn clean verifyMore information: How to Use the JMeter Maven Plugin