Goodness me.
This...
<execution>
<id>surefire-it</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<configuration>
<skip>false</skip>
</configuration>
</configuration>
</execution>
...should be (note extra <configuration> stanza)...
<execution>
<id>surefire-it</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>false</skip>
</configuration>
</execution>
Works!
Thanks everyone!
-Chris
-----Original Message-----
From: Wendy Smoak [mailto:[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. 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) remember happening. I think you
either have to let Surefire run in 'test' and do the
includes/excludes, or else switch to pom packaging and bind executions
of the various plugins exactly where you want them.
--
Wendy
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
_______________________________________________________________________
Notice: This email message, together with any attachments, may contain
information of BEA Systems, Inc., its subsidiaries and affiliated
entities, that may be confidential, proprietary, copyrighted and/or
legally privileged, and is intended solely for the use of the individual
or entity named in this message. If you are not the intended recipient,
and have received this message in error, please immediately return this
by email and then delete it.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]