I am using the Maven plugin for JMeter (http://jmeter.lazerycode.com/).
In my JMeter test plan, I defined various properties, for example. hostName, threadCount, etc.
If I used the standard JMeter program from the command line, I would specify the following properties:
jmeter -n -t mytest.jmx -JhostName=www.example.com -JthreadCount=5
Since the Maven JMeter plugin is executed with the following command:
mvn verify
How to pass property values? Command:
mvn verify -JhostName=www.example.com -JthreadCount=5
It doesn't seem to work. I have to miss something obvious
source share