mirror of https://github.com/apache/maven.git
remove default constructor so that a version range must be entered. It is unlikely future tests will work on all versions of Maven anyway
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@744500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4ddb5cbda9
commit
b7abb7d681
|
@ -25,10 +25,11 @@ import org.apache.maven.it.Verifier;
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
|
|
||||||
import junit.framework.Test;
|
import junit.framework.Test;
|
||||||
|
import junit.framework.TestCase;
|
||||||
import junit.framework.TestSuite;
|
import junit.framework.TestSuite;
|
||||||
|
|
||||||
public class IntegrationTestSuite
|
public class IntegrationTestSuite
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends TestCase
|
||||||
{
|
{
|
||||||
private static PrintStream out = System.out;
|
private static PrintStream out = System.out;
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,11 @@ public class MavenIT0007Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected MavenIT0007Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* We specify a parent in the POM and make sure that it is downloaded as
|
* We specify a parent in the POM and make sure that it is downloaded as
|
||||||
* part of the process.
|
* part of the process.
|
||||||
|
|
|
@ -28,6 +28,11 @@ public class MavenIT0008Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected MavenIT0008Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Simple goal decoration where a plugin binds to a phase and the plugin must
|
* Simple goal decoration where a plugin binds to a phase and the plugin must
|
||||||
* be downloaded from a remote repository before it can be executed. This
|
* be downloaded from a remote repository before it can be executed. This
|
||||||
|
|
|
@ -28,6 +28,11 @@ public class MavenIT0009Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected MavenIT0009Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test plugin configuration and goal configuration that overrides what the
|
* Test plugin configuration and goal configuration that overrides what the
|
||||||
* mojo has specified.
|
* mojo has specified.
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.List;
|
||||||
public class MavenIT0010Test
|
public class MavenIT0010Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0010Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Since the artifact resolution does not use the project builder, we must
|
* Since the artifact resolution does not use the project builder, we must
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.List;
|
||||||
public class MavenIT0011Test
|
public class MavenIT0011Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0011Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test specification of dependency versions via <dependencyManagement/>.
|
* Test specification of dependency versions via <dependencyManagement/>.
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0012Test
|
public class MavenIT0012Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0012Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test simple POM interpolation
|
* Test simple POM interpolation
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0018Test
|
public class MavenIT0018Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0018Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensure that managed dependencies for dependency POMs are calculated
|
* Ensure that managed dependencies for dependency POMs are calculated
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0019Test
|
public class MavenIT0019Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0019Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that a version is managed by pluginManagement in the super POM
|
* Test that a version is managed by pluginManagement in the super POM
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0021Test
|
public class MavenIT0021Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0021Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test pom-level profile inclusion (this one is activated by system
|
* Test pom-level profile inclusion (this one is activated by system
|
||||||
|
|
|
@ -27,6 +27,11 @@ import java.io.File;
|
||||||
public class MavenIT0023Test
|
public class MavenIT0023Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0023Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test profile inclusion from settings.xml (this one is activated by an id
|
* Test profile inclusion from settings.xml (this one is activated by an id
|
||||||
* in the activeProfiles section).
|
* in the activeProfiles section).
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0024Test
|
public class MavenIT0024Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0024Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test usage of <executions/> inside a plugin rather than <goals/>
|
* Test usage of <executions/> inside a plugin rather than <goals/>
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0025Test
|
public class MavenIT0025Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0025Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test multiple goal executions with different execution-level configs.
|
* Test multiple goal executions with different execution-level configs.
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0030Test
|
public class MavenIT0030Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0030Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for injection of dependencyManagement through parents of
|
* Test for injection of dependencyManagement through parents of
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0032Test
|
public class MavenIT0032Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0032Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests that a specified Maven version requirement that is lower doesn't cause any problems
|
* Tests that a specified Maven version requirement that is lower doesn't cause any problems
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0036Test
|
public class MavenIT0036Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0036Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test building from release-pom.xml when it's available
|
* Test building from release-pom.xml when it's available
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0037Test
|
public class MavenIT0037Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0037Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test building with alternate pom file using '-f'
|
* Test building with alternate pom file using '-f'
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0038Test
|
public class MavenIT0038Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0038Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test building project from outside the project directory using '-f'
|
* Test building project from outside the project directory using '-f'
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0039Test
|
public class MavenIT0039Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0039Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test reactor for projects that have release-pom.xml in addition to
|
* Test reactor for projects that have release-pom.xml in addition to
|
||||||
|
|
|
@ -34,6 +34,11 @@ public class MavenIT0040Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected MavenIT0040Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the use of a packaging from a plugin
|
* Test the use of a packaging from a plugin
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0041Test
|
public class MavenIT0041Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0041Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the use of a new type from a plugin
|
* Test the use of a new type from a plugin
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0052Test
|
public class MavenIT0052Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0052Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that source attachment doesn't take place when
|
* Test that source attachment doesn't take place when
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0056Test
|
public class MavenIT0056Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0056Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that multiple executions of a goal with different
|
* Test that multiple executions of a goal with different
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.List;
|
||||||
public class MavenIT0063Test
|
public class MavenIT0063Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0063Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the use of a system scoped dependency to a (fake) tools.jar.
|
* Test the use of a system scoped dependency to a (fake) tools.jar.
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenIT0064Test
|
public class MavenIT0064Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0064Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the use of a mojo that uses setters instead of private fields
|
* Test the use of a mojo that uses setters instead of private fields
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenIT0071Test
|
public class MavenIT0071Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0071Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verifies that dotted property references work within plugin
|
* Verifies that dotted property references work within plugin
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenIT0072Test
|
public class MavenIT0072Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0072Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verifies that property references with dotted notation work within
|
* Verifies that property references with dotted notation work within
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.Collection;
|
||||||
public class MavenIT0085Test
|
public class MavenIT0085Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0085Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that system-scoped dependencies get resolved with system scope
|
* Verify that system-scoped dependencies get resolved with system scope
|
||||||
|
|
|
@ -30,6 +30,11 @@ import java.util.Properties;
|
||||||
public class MavenIT0090Test
|
public class MavenIT0090Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0090Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that ensures that envars are interpolated correctly into plugin
|
* Test that ensures that envars are interpolated correctly into plugin
|
||||||
* configurations.
|
* configurations.
|
||||||
|
|
|
@ -37,6 +37,11 @@ import java.util.Locale;
|
||||||
public class MavenIT0108SnapshotUpdateTest
|
public class MavenIT0108SnapshotUpdateTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0108SnapshotUpdateTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
private Verifier verifier;
|
private Verifier verifier;
|
||||||
|
|
||||||
private File artifact;
|
private File artifact;
|
||||||
|
|
|
@ -34,6 +34,11 @@ import java.util.Map;
|
||||||
public class MavenIT0109ReleaseUpdateTest
|
public class MavenIT0109ReleaseUpdateTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0109ReleaseUpdateTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
private static final String GROUPID = "org.apache.maven.it";
|
private static final String GROUPID = "org.apache.maven.it";
|
||||||
|
|
||||||
private static final String ARTIFACTID = "maven-it-release-update";
|
private static final String ARTIFACTID = "maven-it-release-update";
|
||||||
|
|
|
@ -30,6 +30,10 @@ import java.util.Properties;
|
||||||
public class MavenIT0113ServerAuthzAvailableToWagonMgrInPluginTest
|
public class MavenIT0113ServerAuthzAvailableToWagonMgrInPluginTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0113ServerAuthzAvailableToWagonMgrInPluginTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that the auth infos given in the settings.xml are pushed into the wagon manager and are available
|
* Test that the auth infos given in the settings.xml are pushed into the wagon manager and are available
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.util.Properties;
|
||||||
public class MavenIT0139Test
|
public class MavenIT0139Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0139Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that expressions of the form ${project.*} resolve correctly to POM values.
|
* Test that expressions of the form ${project.*} resolve correctly to POM values.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.util.Properties;
|
||||||
public class MavenIT0140Test
|
public class MavenIT0140Test
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenIT0140Test()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that expressions of the form ${pom.*} resolve correctly to POM values.
|
* Test that expressions of the form ${pom.*} resolve correctly to POM values.
|
||||||
|
|
|
@ -38,8 +38,9 @@ public class MavenIT0142DirectDependencyScopesTest
|
||||||
* NOTE: Class path ordering is another issue (MNG-1412), so we merely check set containment here.
|
* NOTE: Class path ordering is another issue (MNG-1412), so we merely check set containment here.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public MavenIT0142DirectDependencyScopesTest()
|
protected MavenIT0142DirectDependencyScopesTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -41,6 +41,7 @@ public class MavenIT0143TransitiveDependencyScopesTest
|
||||||
|
|
||||||
public MavenIT0143TransitiveDependencyScopesTest()
|
public MavenIT0143TransitiveDependencyScopesTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,6 +38,7 @@ public class MavenIT0144LifecycleExecutionOrderTest
|
||||||
|
|
||||||
public MavenIT0144LifecycleExecutionOrderTest()
|
public MavenIT0144LifecycleExecutionOrderTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -32,6 +32,10 @@ import java.io.File;
|
||||||
public class MavenITBootstrapTest
|
public class MavenITBootstrapTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITBootstrapTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bootstraps the integration tests by downloading required artifacts.
|
* Bootstraps the integration tests by downloading required artifacts.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0095ReactorFailureBehaviorTest
|
public class MavenITmng0095ReactorFailureBehaviorTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0095ReactorFailureBehaviorTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test fail-fast reactor behavior. Forces an exception to be thrown in
|
* Test fail-fast reactor behavior. Forces an exception to be thrown in
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.List;
|
||||||
public class MavenITmng0249ResolveDepsFromReactorTest
|
public class MavenITmng0249ResolveDepsFromReactorTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0249ResolveDepsFromReactorTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that the reactor can establish the artifact location of known projects for dependencies.
|
* Test that the reactor can establish the artifact location of known projects for dependencies.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0282NonReactorExecWhenProjectIndependentTest
|
public class MavenITmng0282NonReactorExecWhenProjectIndependentTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0282NonReactorExecWhenProjectIndependentTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test non-reactor behavior when plugin declares "@requiresProject false"
|
* Test non-reactor behavior when plugin declares "@requiresProject false"
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng0294MergeGlobalAndUserSettingsTest
|
||||||
|
|
||||||
public MavenITmng0294MergeGlobalAndUserSettingsTest()
|
public MavenITmng0294MergeGlobalAndUserSettingsTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,6 +38,7 @@ public class MavenITmng0377PluginLookupFromPrefixTest
|
||||||
{
|
{
|
||||||
public MavenITmng0377PluginLookupFromPrefixTest()
|
public MavenITmng0377PluginLookupFromPrefixTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.List;
|
||||||
public class MavenITmng0471CustomLifecycleTest
|
public class MavenITmng0471CustomLifecycleTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0471CustomLifecycleTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test @execute with a custom lifecycle, including configuration
|
* Test @execute with a custom lifecycle, including configuration
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng0479OverrideCentralRepoTest
|
public class MavenITmng0479OverrideCentralRepoTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0479OverrideCentralRepoTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for repository inheritance - ensure using the same id overrides the defaults
|
* Test for repository inheritance - ensure using the same id overrides the defaults
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0496IgnoreUnknownPluginParametersTest
|
public class MavenITmng0496IgnoreUnknownPluginParametersTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0496IgnoreUnknownPluginParametersTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that unused configuration parameters from the POM don't cause the
|
* Test that unused configuration parameters from the POM don't cause the
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Collection;
|
||||||
public class MavenITmng0505VersionRangeTest
|
public class MavenITmng0505VersionRangeTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0505VersionRangeTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test version range support.
|
* Test version range support.
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.List;
|
||||||
public class MavenITmng0507ArtifactRelocationTest
|
public class MavenITmng0507ArtifactRelocationTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0507ArtifactRelocationTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test artifact relocation.
|
* Test artifact relocation.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0522PluginMgmtConfigTest
|
public class MavenITmng0522PluginMgmtConfigTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0522PluginMgmtConfigTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for pluginManagement injection of plugin configuration.
|
* Test for pluginManagement injection of plugin configuration.
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.List;
|
||||||
public class MavenITmng0557UserSettingsCliOptionTest
|
public class MavenITmng0557UserSettingsCliOptionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0557UserSettingsCliOptionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test --settings CLI option
|
* Test --settings CLI option
|
||||||
|
|
|
@ -33,6 +33,11 @@ import java.io.File;
|
||||||
public class MavenITmng0612NewestConflictResolverTest
|
public class MavenITmng0612NewestConflictResolverTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0612NewestConflictResolverTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that ensures the newest-wins conflict resolver is used.
|
* Test that ensures the newest-wins conflict resolver is used.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.List;
|
||||||
public class MavenITmng0666IgnoreLegacyPomTest
|
public class MavenITmng0666IgnoreLegacyPomTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0666IgnoreLegacyPomTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that maven-1 POMs will be ignored but not stop the resolution
|
* Verify that maven-1 POMs will be ignored but not stop the resolution
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0674PluginParameterAliasTest
|
public class MavenITmng0674PluginParameterAliasTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0674PluginParameterAliasTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test parameter alias usage.
|
* Test parameter alias usage.
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng0680ParentBasedirTest
|
public class MavenITmng0680ParentBasedirTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0680ParentBasedirTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that the basedir of the parent is set correctly.
|
* Test that the basedir of the parent is set correctly.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0731LegacyRepoLayoutTest
|
public class MavenITmng0731LegacyRepoLayoutTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0731LegacyRepoLayoutTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that deployment of artifacts to a legacy-layout repository
|
* Verify that deployment of artifacts to a legacy-layout repository
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class MavenITmng0761MissingSnapshotDistRepoTest
|
||||||
|
|
||||||
public MavenITmng0761MissingSnapshotDistRepoTest()
|
public MavenITmng0761MissingSnapshotDistRepoTest()
|
||||||
{
|
{
|
||||||
super();
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.List;
|
||||||
public class MavenITmng0768OfflineModeTest
|
public class MavenITmng0768OfflineModeTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0768OfflineModeTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test offline mode.
|
* Test offline mode.
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.List;
|
||||||
public class MavenITmng0773SettingsProfileReactorPollutionTest
|
public class MavenITmng0773SettingsProfileReactorPollutionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0773SettingsProfileReactorPollutionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that profiles from settings.xml do not pollute module lists across projects in a reactorized build.
|
* Verify that profiles from settings.xml do not pollute module lists across projects in a reactorized build.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0781PluginConfigVsExecConfigTest
|
public class MavenITmng0781PluginConfigVsExecConfigTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0781PluginConfigVsExecConfigTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that plugin-level configuration instances are not nullified by
|
* Test that plugin-level configuration instances are not nullified by
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng0786ProfileAwareReactorTest
|
public class MavenITmng0786ProfileAwareReactorTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0786ProfileAwareReactorTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that direct invocation of a mojo from the command line still
|
* Verify that direct invocation of a mojo from the command line still
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng0814ExplicitProfileActivationTest
|
public class MavenITmng0814ExplicitProfileActivationTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0814ExplicitProfileActivationTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test activation of a profile from the command line.
|
* Test activation of a profile from the command line.
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.Collections;
|
||||||
public class MavenITmng0818WarDepsNotTransitiveTest
|
public class MavenITmng0818WarDepsNotTransitiveTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0818WarDepsNotTransitiveTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that depending on a WAR doesn't also get its dependencies transitively.
|
* Test that depending on a WAR doesn't also get its dependencies transitively.
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Collection;
|
||||||
public class MavenITmng0820ConflictResolutionTest
|
public class MavenITmng0820ConflictResolutionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0820ConflictResolutionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that the collector selecting a particular version gets the correct subtree
|
* Verify that the collector selecting a particular version gets the correct subtree
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.List;
|
||||||
public class MavenITmng0823MojoContextPassingTest
|
public class MavenITmng0823MojoContextPassingTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0823MojoContextPassingTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests context passing between mojos in the same plugin.
|
* Tests context passing between mojos in the same plugin.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0836PluginParentResolutionTest
|
public class MavenITmng0836PluginParentResolutionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0836PluginParentResolutionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that parent POMs referenced by a plugin POM can be resolved from ordinary repos, i.e. non-plugin repos.
|
* Test that parent POMs referenced by a plugin POM can be resolved from ordinary repos, i.e. non-plugin repos.
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng0848SystemPropOverridesDefaultValueTest
|
||||||
|
|
||||||
public MavenITmng0848SystemPropOverridesDefaultValueTest()
|
public MavenITmng0848SystemPropOverridesDefaultValueTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,6 +38,7 @@ public class MavenITmng0866EvaluateDefaultValueTest
|
||||||
|
|
||||||
public MavenITmng0866EvaluateDefaultValueTest()
|
public MavenITmng0866EvaluateDefaultValueTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class MavenITmng0870ReactorAwarePluginDiscoveryTest
|
||||||
|
|
||||||
public MavenITmng0870ReactorAwarePluginDiscoveryTest()
|
public MavenITmng0870ReactorAwarePluginDiscoveryTest()
|
||||||
{
|
{
|
||||||
super();
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng0956ComponentInjectionViaProjectLevelPluginDepTest
|
public class MavenITmng0956ComponentInjectionViaProjectLevelPluginDepTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0956ComponentInjectionViaProjectLevelPluginDepTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test component injection from project-level plugin dependencies.
|
* Test component injection from project-level plugin dependencies.
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng0985NonExecutedPluginMngtGoalsTest
|
public class MavenITmng0985NonExecutedPluginMngtGoalsTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng0985NonExecutedPluginMngtGoalsTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that plugins in pluginManagement aren't included in the build
|
* Test that plugins in pluginManagement aren't included in the build
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng1021EqualAttachmentBuildNumberTest
|
public class MavenITmng1021EqualAttachmentBuildNumberTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1021EqualAttachmentBuildNumberTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that source attachments have the same build number and timestamp as the main
|
* Test that source attachments have the same build number and timestamp as the main
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng1052PluginMngtConfigTest
|
public class MavenITmng1052PluginMngtConfigTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1052PluginMngtConfigTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that configuration for a lifecycle-bound plugin is injected from
|
* Test that configuration for a lifecycle-bound plugin is injected from
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng1088ReactorDepResolutionTest
|
public class MavenITmng1088ReactorDepResolutionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1088ReactorDepResolutionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that the reactor can establish the artifact location of known projects for dependencies
|
* Test that the reactor can establish the artifact location of known projects for dependencies
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Collection;
|
||||||
public class MavenITmng1233WarDepWithProvidedScopeTest
|
public class MavenITmng1233WarDepWithProvidedScopeTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1233WarDepWithProvidedScopeTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that overriding a transitive compile time dependency as provided in a WAR ensures it is not included.
|
* Verify that overriding a transitive compile time dependency as provided in a WAR ensures it is not included.
|
||||||
|
|
|
@ -35,6 +35,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng1415QuotedSystemPropertiesTest
|
public class MavenITmng1415QuotedSystemPropertiesTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1415QuotedSystemPropertiesTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that quoted system properties are processed correctly. [MNG-1415]
|
* Test that quoted system properties are processed correctly. [MNG-1415]
|
||||||
|
|
|
@ -28,6 +28,11 @@ import java.io.File;
|
||||||
public class MavenITmng1491ReactorArtifactIdCollisionTest
|
public class MavenITmng1491ReactorArtifactIdCollisionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1491ReactorArtifactIdCollisionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG1491 ()
|
public void testitMNG1491 ()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -33,6 +33,10 @@ import java.io.File;
|
||||||
public class MavenITmng1908LegacySnapshotUpdateTest
|
public class MavenITmng1908LegacySnapshotUpdateTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng1908LegacySnapshotUpdateTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that legacy repositories with legacy snapshots download correctly.
|
* Test that legacy repositories with legacy snapshots download correctly.
|
||||||
|
|
|
@ -29,6 +29,10 @@ import java.util.List;
|
||||||
public class MavenITmng2052InterpolateWithSettingsProfilePropertiesTest
|
public class MavenITmng2052InterpolateWithSettingsProfilePropertiesTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2052InterpolateWithSettingsProfilePropertiesTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that properties defined in an active profile in the user's
|
* Test that properties defined in an active profile in the user's
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng2124PomInterpolationWithParentValuesTest
|
public class MavenITmng2124PomInterpolationWithParentValuesTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2124PomInterpolationWithParentValuesTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that ${parent.artifactId} resolves correctly. [MNG-2124]
|
* Test that ${parent.artifactId} resolves correctly. [MNG-2124]
|
||||||
|
|
|
@ -27,6 +27,10 @@ import java.io.File;
|
||||||
public class MavenITmng2130ParentLookupFromReactorCacheTest
|
public class MavenITmng2130ParentLookupFromReactorCacheTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2130ParentLookupFromReactorCacheTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that parent-POMs cached during a build are available as parents
|
* Test that parent-POMs cached during a build are available as parents
|
||||||
|
|
|
@ -28,6 +28,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng2136ActiveByDefaultProfileTest
|
public class MavenITmng2136ActiveByDefaultProfileTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2136ActiveByDefaultProfileTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that <activeByDefault/> calculations for profile activation only
|
* Test that <activeByDefault/> calculations for profile activation only
|
||||||
|
|
|
@ -33,6 +33,11 @@ import java.io.File;
|
||||||
public class MavenITmng2771PomExtensionComponentOverrideTest
|
public class MavenITmng2771PomExtensionComponentOverrideTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2771PomExtensionComponentOverrideTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that ensures the POM extensions can override default component implementations.
|
* Test that ensures the POM extensions can override default component implementations.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng2878DefaultReportXmlImportTest
|
public class MavenITmng2878DefaultReportXmlImportTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2878DefaultReportXmlImportTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that a plugin can load default-report.xml from the core.
|
* Verify that a plugin can load default-report.xml from the core.
|
||||||
|
|
|
@ -33,6 +33,11 @@ import java.io.File;
|
||||||
public class MavenITmng2994SnapshotRangeRepositoryTest
|
public class MavenITmng2994SnapshotRangeRepositoryTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng2994SnapshotRangeRepositoryTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that snapshot repositories are checked for ranges with snapshot boundaries.
|
* Test that snapshot repositories are checked for ranges with snapshot boundaries.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -34,6 +34,10 @@ import java.util.Properties;
|
||||||
public class MavenITmng3012CoreClassImportTest
|
public class MavenITmng3012CoreClassImportTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3012CoreClassImportTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verify that classes shared with the Maven core realm are imported into the plugin realm such that instances of
|
* Verify that classes shared with the Maven core realm are imported into the plugin realm such that instances of
|
||||||
|
|
|
@ -35,6 +35,11 @@ import org.apache.maven.it.util.ResourceExtractor;
|
||||||
public class MavenITmng3038TransitiveDepManVersionTest
|
public class MavenITmng3038TransitiveDepManVersionTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3038TransitiveDepManVersionTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3038()
|
public void testitMNG3038()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng3139UseCachedMetadataOfBlacklistedRepoTest
|
||||||
|
|
||||||
public MavenITmng3139UseCachedMetadataOfBlacklistedRepoTest()
|
public MavenITmng3139UseCachedMetadataOfBlacklistedRepoTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -31,6 +31,10 @@ import org.apache.maven.it.util.ResourceExtractor;
|
||||||
public class MavenITmng3288SystemScopeDirTest
|
public class MavenITmng3288SystemScopeDirTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3288SystemScopeDirTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the use of a system scoped dependency to a directory instead of a JAR which should fail early.
|
* Test the use of a system scoped dependency to a directory instead of a JAR which should fail early.
|
||||||
|
|
|
@ -40,6 +40,11 @@ import org.apache.maven.it.util.ResourceExtractor;
|
||||||
public class MavenITmng3331ModulePathNormalizationTest
|
public class MavenITmng3331ModulePathNormalizationTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3331ModulePathNormalizationTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3331a ()
|
public void testitMNG3331a ()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class MavenITmng3379ParallelArtifactDownloadsTest
|
||||||
|
|
||||||
public MavenITmng3379ParallelArtifactDownloadsTest()
|
public MavenITmng3379ParallelArtifactDownloadsTest()
|
||||||
{
|
{
|
||||||
super();
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,6 +38,11 @@ import java.util.List;
|
||||||
public class MavenITmng3482DependencyPomInterpolationTest
|
public class MavenITmng3482DependencyPomInterpolationTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3482DependencyPomInterpolationTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3482()
|
public void testitMNG3482()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,10 +36,10 @@ import java.io.File;
|
||||||
public class MavenITmng3498ForkToOtherMojoTest
|
public class MavenITmng3498ForkToOtherMojoTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
// public MavenITmng3498ForkToOtherMojoTest()
|
protected MavenITmng3498ForkToOtherMojoTest()
|
||||||
// {
|
{
|
||||||
// super( "(2.0.8,)" ); // only test in 2.0.9+
|
super( ALL_MAVEN_VERSIONS );
|
||||||
// }
|
}
|
||||||
|
|
||||||
public void testitMNG3498 ()
|
public void testitMNG3498 ()
|
||||||
throws Exception
|
throws Exception
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng3586SystemScopePluginDependencyTest
|
||||||
|
|
||||||
public MavenITmng3586SystemScopePluginDependencyTest()
|
public MavenITmng3586SystemScopePluginDependencyTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -33,6 +33,11 @@ import org.apache.maven.it.util.ResourceExtractor;
|
||||||
public class MavenITmng3679PluginExecIdInterpolationTest
|
public class MavenITmng3679PluginExecIdInterpolationTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3679PluginExecIdInterpolationTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3679 ()
|
public void testitMNG3679 ()
|
||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,6 +36,10 @@ import org.apache.maven.it.util.ResourceExtractor;
|
||||||
public class MavenITmng3693PomFileBasedirChangeTest
|
public class MavenITmng3693PomFileBasedirChangeTest
|
||||||
extends AbstractMavenIntegrationTestCase
|
extends AbstractMavenIntegrationTestCase
|
||||||
{
|
{
|
||||||
|
protected MavenITmng3693PomFileBasedirChangeTest()
|
||||||
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
|
}
|
||||||
|
|
||||||
public void testitMNG3693 ()
|
public void testitMNG3693 ()
|
||||||
throws Exception
|
throws Exception
|
||||||
|
|
|
@ -35,6 +35,7 @@ public class MavenITmng3694ReactorProjectsDynamismTest
|
||||||
{
|
{
|
||||||
public MavenITmng3694ReactorProjectsDynamismTest()
|
public MavenITmng3694ReactorProjectsDynamismTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testitMNG3694 ()
|
public void testitMNG3694 ()
|
||||||
|
|
|
@ -36,6 +36,7 @@ public class MavenITmng3821EqualPluginExecIdsTest
|
||||||
|
|
||||||
public MavenITmng3821EqualPluginExecIdsTest()
|
public MavenITmng3821EqualPluginExecIdsTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng3827PluginConfigTest
|
||||||
|
|
||||||
public MavenITmng3827PluginConfigTest()
|
public MavenITmng3827PluginConfigTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng3833PomInterpolationDataFlowChainTest
|
||||||
|
|
||||||
public MavenITmng3833PomInterpolationDataFlowChainTest()
|
public MavenITmng3833PomInterpolationDataFlowChainTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -37,6 +37,7 @@ public class MavenITmng3836PluginConfigInheritanceTest
|
||||||
|
|
||||||
public MavenITmng3836PluginConfigInheritanceTest()
|
public MavenITmng3836PluginConfigInheritanceTest()
|
||||||
{
|
{
|
||||||
|
super( ALL_MAVEN_VERSIONS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue