I want to run install even if my tests fail

2008-04-02 Thread Sommers, Elizabeth
Is there any way to do this? And, yes, I know that it is a bad thing to do but I need to attach some artifacts whether or not the tests have failed. Liz Sommers [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: I want to run install even if my tests fail

2008-04-02 Thread Mick Knutson
In your surefire plugin: testFailureIgnoretrue/testFailureIgnore On Wed, Apr 2, 2008 at 10:25 AM, Sommers, Elizabeth [EMAIL PROTECTED] wrote: Is there any way to do this? And, yes, I know that it is a bad thing to do but I need to attach some artifacts whether or not the tests have failed.

Re: I want to run install even if my tests fail

2008-04-02 Thread Siarhei Dudzin
or 'mvn install -Dmaven.test.skip=true' Siarhei On Wed, Apr 2, 2008 at 7:34 PM, Mick Knutson [EMAIL PROTECTED] wrote: In your surefire plugin: testFailureIgnoretrue/testFailureIgnore On Wed, Apr 2, 2008 at 10:25 AM, Sommers, Elizabeth [EMAIL PROTECTED] wrote: Is there any way to do

RE: I want to run install even if my tests fail

2008-04-02 Thread Sommers, Elizabeth
, April 02, 2008 2:11 PM To: Maven Users List Subject: Re: I want to run install even if my tests fail or 'mvn install -Dmaven.test.skip=true' Siarhei - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: I want to run install even if my tests fail

2008-04-02 Thread Joshua ChaitinPollak
On Apr 2, 2008, at 2:10 PM, Siarhei Dudzin wrote: or 'mvn install -Dmaven.test.skip=true' Siarhei As a short cut to the above solution we have the following in our pom.xml. It lets us do: mvn -Dskiptest install Which is a minor improvement in terms of typing. profile

Re: I want to run install even if my tests fail

2008-04-02 Thread Tom Huybrechts
continue to install. -Original Message- From: Siarhei Dudzin [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 2:11 PM To: Maven Users List Subject: Re: I want to run install even if my tests fail or 'mvn install -Dmaven.test.skip=true' Siarhei