[MNG-4204] Remove support for legacy style repositories

o Disabled affected ITs

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@825184 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-10-14 16:40:57 +00:00
parent 782d0355e7
commit bb0c200385
3 changed files with 9 additions and 2 deletions

View File

@ -33,9 +33,11 @@ import java.io.File;
public class MavenITmng0731LegacyRepoLayoutTest public class MavenITmng0731LegacyRepoLayoutTest
extends AbstractMavenIntegrationTestCase extends AbstractMavenIntegrationTestCase
{ {
public MavenITmng0731LegacyRepoLayoutTest() public MavenITmng0731LegacyRepoLayoutTest()
{ {
super( ALL_MAVEN_VERSIONS ); // legacy layout no longer supported in Maven 3.x (see MNG-4204)
super( "[2.0,3.0-alpha-3)" );
} }
/** /**

View File

@ -33,9 +33,11 @@ import java.io.File;
public class MavenITmng1908LegacySnapshotUpdateTest public class MavenITmng1908LegacySnapshotUpdateTest
extends AbstractMavenIntegrationTestCase extends AbstractMavenIntegrationTestCase
{ {
public MavenITmng1908LegacySnapshotUpdateTest() public MavenITmng1908LegacySnapshotUpdateTest()
{ {
super( ALL_MAVEN_VERSIONS ); // legacy layout no longer supported in Maven 3.x (see MNG-4204)
super( "[2.0,3.0-alpha-3)" );
} }
/** /**

View File

@ -65,6 +65,9 @@ public class MavenITmng4036ParentResolutionFromSettingsRepoTest
public void testitLegacyLayout() public void testitLegacyLayout()
throws Exception throws Exception
{ {
// legacy layout no longer supported in Maven 3.x (see MNG-4204)
requiresMavenVersion( "[2.0,3.0-alpha-3)" );
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4036/legacy" ); File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4036/legacy" );
Verifier verifier = new Verifier( testDir.getAbsolutePath() ); Verifier verifier = new Verifier( testDir.getAbsolutePath() );