o Extended IT to consider MNG-2097

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@727985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2008-12-19 09:27:22 +00:00
parent 0b806b5c0e
commit 24ff7b5359
2 changed files with 17 additions and 0 deletions

View File

@ -76,9 +76,15 @@ public class MavenIT0144LifecycleExecutionOrderTest
expected.add( "test-compile" );
if ( matchesVersionRange( "(2.0.4,)" ) )
{
// MNG-1508
expected.add( "process-test-classes" );
}
expected.add( "test" );
if ( matchesVersionRange( "(2.1.0-M1,)" ) )
{
// MNG-2097
expected.add( "prepare-package" );
}
expected.add( "package" );
if ( matchesVersionRange( "(2.0.1,)" ) )
{

View File

@ -205,6 +205,17 @@ under the License.
<string>test</string>
</configuration>
</execution>
<execution>
<id>prepare-package</id>
<phase>prepare-package</phase>
<goals>
<goal>log-string</goal>
</goals>
<configuration>
<logFile>target/phases.log</logFile>
<string>prepare-package</string>
</configuration>
</execution>
<execution>
<id>package</id>
<phase>package</phase>