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.

link|improve this question
feedback

1 Answer

-Darguments="-DskipTests" is what you want, or explicitly configuring the forked executions in the pom.

link|improve this answer
Worked perfectly for me. That was a life saver. I wonder why the OP didn't mark this as the answer for his question. Anyway, thanks a lot. – James Selvakumar May 8 at 3:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.