Hi,
I do not believe this will override the property on the command line. The properties are being set in the pom file, if you want to override them in the pom file you will need to create custom maven properties in your pom file and then you can override them on the command line. An example below.
<project>
...
<properties>
<service.endpont>
http://abc.test.com:8080</service.endpoint> </properties>
...
<projectProperties>
<value>ServiceEndpoint=${service.endpoint}</value>
....
</projectProperties>
</project>
To override the property on the command line you would do, mvn test -Dservice.endpoint=
http://new.endpoint.com:8888Regards,
Marcus
SmartBear Support