mirror of https://github.com/apache/maven.git
[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:
parent
782d0355e7
commit
bb0c200385
|
@ -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)" );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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)" );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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() );
|
||||||
|
|
Loading…
Reference in New Issue