I have in pom the plugin maven-surefire-plugin with skipTests on true. However, sometimes I want to run the tests from the command line and I want to overwrite this plugin from command line and to leave the pom file unchanged.
I tried
mvn install -DskipTests=false
but it still skips the tests...
Any idea how I can solve my problem...?
Thanks