I am trying to run 2 maven goals in one maven command like:
mvn release:prepare release:perform -Darguments='-Dmaven.test.skip=true'
but, I would like the first goal to skip tests and the second one not to skip tests.
It has to be in one line command.
Is there a way to do it other than executing them in 2 separate commands?