mirror of https://github.com/apache/maven.git
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:
parent
0b806b5c0e
commit
24ff7b5359
|
@ -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,)" ) )
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue