When I specify the same Maven CLI option multiple times with different values, which value is picked up by Maven?
For example, let's say I have
mvn -T 1 -T 4 -Dmaven.test.skip=true -Dmaven.test.skip=false install
Will the Maven build be executed with 1 or with 4 threads? Will the tests be executed or no?
Is there a guaranteed mechanism in Maven for picking up CLI option values?