Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We can override properties defined in POM using command line.

Can we somehow make the opposite effect? To override command line parameters in POM?

I have a Hudson with "-Dmaven.test.skip -DskipTests -DskipITs" in command line, and I can't change it (admin responds to requests in a month), but I want to run my tests anyway..

Thank you)

share|improve this question

2 Answers

Something you might try: Change your POM to execute the tests as part of another phase in the lifecycle. I don't know how to do this off-hand, but in the worst-case you could always use <ant> to shoehorn it in. Good luck!

share|improve this answer
thank you @jimbojw, maybe I will do that.. (but that are really worst cases) – Oleg Chiruhin Sep 14 '11 at 17:18

Overwrite the configuration for ignoring the test in the pom explicit.

share|improve this answer
what do you mean? – Oleg Chiruhin Sep 14 '11 at 17:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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