How can I get the maven-release-plugin to run without triggering the tests?
I have tried
-Dmaven.test.skip=true
and
-DskipTests
and
-DpreparationGoals=clean
...yet none work.
Yes, I know I shouldn't release if the tests don't pass, but I don't have control over making my coworkers write reliable tests.
I inherited a giant project with a hopelessly messy POM and test base. One of my first steps towards getting the project building effectively is enabling the release plugin so this project can have rollback points.
Any help or leads would be greatly appreciated.