RE: maven-surefire-plugin - turn off for "test", turn on for"integration-test"?

2006-07-28 Thread Chris Wall
I sure will. Thanks Wendy. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: July 27, 2006 8:16 PM To: Maven Users List Subject: Re: maven-surefire-plugin - turn off for "test", turn on for"integration-test"? On 7/27/06, Chris Wall <[

Re: maven-surefire-plugin - turn off for "test", turn on for"integration-test"?

2006-07-27 Thread Wendy Smoak
On 7/27/06, Chris Wall <[EMAIL PROTECTED]> wrote: Goodness me. This... ... Works! Thanks everyone! Would you consider writing up what you've discovered for the wiki? Here's an 'Examples' page where it might fit: http://docs.codehaus.org/display/MAVENUSER/Examples (If by chance you don't ha

RE: maven-surefire-plugin - turn off for "test", turn on for"integration-test"?

2006-07-27 Thread Chris Wall
:[EMAIL PROTECTED] Sent: July 27, 2006 6:58 PM To: Maven Users List Subject: Re: maven-surefire-plugin - turn off for "test", turn on for"integration-test"? On 7/27/06, Chris Wall <[EMAIL PROTECTED]> wrote: > Based on your recommendation I made the following update. Y

Re: maven-surefire-plugin - turn off for "test", turn on for"integration-test"?

2006-07-27 Thread Wendy Smoak
On 7/27/06, Chris Wall <[EMAIL PROTECTED]> wrote: Based on your recommendation I made the following update. Yet, the execution element's skip=false is not overriding the parent value. Both the unit test and integration test executions are being skipped. That fits with what I (vaguely) rememb

RE: maven-surefire-plugin - turn off for "test", turn on for"integration-test"?

2006-07-27 Thread Chris Wall
integration-test > > test > > > >**/*.java > > > > > > I admit we're bending Maven a bit. Actually, the entire module is a > test project. ;-) > > -Chris > > -Original Message- >

RE: maven-surefire-plugin - turn off for "test", turn on for "integration-test"?

2006-07-27 Thread Simon Kitching
> > >**/*.java > > > > > > I admit we're bending Maven a bit. Actually, the entire module is a > test project. ;-) > > -Chris > > -----Original Message----- > From: Wendy Smoak [mailto:[EMAIL PROTECTED] > Sent

RE: maven-surefire-plugin - turn off for "test", turn on for "integration-test"?

2006-07-27 Thread Chris Wall
Maven Users List Subject: Re: maven-surefire-plugin - turn off for "test", turn on for "integration-test"? On 7/27/06, Chris Wall <[EMAIL PROTECTED]> wrote: > I would like to turn off maven-surefire-plugin during the "test" phase > (so, no unit testing at

Re: maven-surefire-plugin - turn off for "test", turn on for "integration-test"?

2006-07-27 Thread Wendy Smoak
On 7/27/06, Chris Wall <[EMAIL PROTECTED]> wrote: I would like to turn off maven-surefire-plugin during the "test" phase (so, no unit testing at all), and turn on maven-surefire-plugin for the "integration-test". Basically my source is a test webapp, and my tests are integration tests. The us