mirror of https://github.com/apache/maven.git
[MNG-7353] Add missing dependencies to bootstrap.txt
This commit is contained in:
parent
afe5d88f77
commit
bf87496d2b
|
@ -49,13 +49,13 @@ public class MavenITmng7353CliGoalInvocationTest
|
|||
public void testPrefixGoal()
|
||||
throws Exception
|
||||
{
|
||||
run( "pluginPrefix-goal", "dependency:list", "maven-dependency-plugin:2.7:list (default-cli)" );
|
||||
run( "pluginPrefix-goal", "dependency:list", "maven-dependency-plugin:3.3.0:list (default-cli)" );
|
||||
}
|
||||
|
||||
public void testPrefixGoalAtId()
|
||||
throws Exception
|
||||
{
|
||||
run( "pluginPrefix-goal@id", "dependency:list@id", "maven-dependency-plugin:2.7:list (id)" );
|
||||
run( "pluginPrefix-goal@id", "dependency:list@id", "maven-dependency-plugin:3.3.0:list (id)" );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -64,7 +64,7 @@ public class MavenITmng7353CliGoalInvocationTest
|
|||
public void testPrefixVersionGoal()
|
||||
throws Exception
|
||||
{
|
||||
run( "pluginPrefix-version-goal", "dependency:2.8:list", "maven-dependency-plugin:2.8:list (default-cli)" );
|
||||
run( "pluginPrefix-version-goal", "dependency:3.1.1:list", "maven-dependency-plugin:3.1.1:list (default-cli)" );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -73,30 +73,30 @@ public class MavenITmng7353CliGoalInvocationTest
|
|||
public void testPrefixVersionGoalAtId()
|
||||
throws Exception
|
||||
{
|
||||
run( "pluginPrefix-goal@id", "dependency:2.8:list@id", "maven-dependency-plugin:2.8:list (id)" );
|
||||
run( "pluginPrefix-goal@id", "dependency:3.1.1:list@id", "maven-dependency-plugin:3.1.1:list (id)" );
|
||||
}
|
||||
|
||||
public void testGroupIdArtifactIdGoal()
|
||||
throws Exception
|
||||
{
|
||||
run( "groupId-artifactId-goal", "org.apache.maven.plugins:maven-dependency-plugin:list", "maven-dependency-plugin:2.7:list (default-cli)" );
|
||||
run( "groupId-artifactId-goal", "org.apache.maven.plugins:maven-dependency-plugin:list", "maven-dependency-plugin:3.3.0:list (default-cli)" );
|
||||
}
|
||||
|
||||
public void testGroupIdArtifactIdGoalAtId()
|
||||
throws Exception
|
||||
{
|
||||
run( "groupId-artifactId-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:list@id", "maven-dependency-plugin:2.7:list (id)" );
|
||||
run( "groupId-artifactId-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:list@id", "maven-dependency-plugin:3.3.0:list (id)" );
|
||||
}
|
||||
|
||||
public void testGroupIdArtifactIdVersionGoal()
|
||||
throws Exception
|
||||
{
|
||||
run( "groupId-artifactId-version-goal", "org.apache.maven.plugins:maven-dependency-plugin:2.8:list", "maven-dependency-plugin:2.8:list (default-cli)" );
|
||||
run( "groupId-artifactId-version-goal", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list", "maven-dependency-plugin:3.1.1:list (default-cli)" );
|
||||
}
|
||||
|
||||
public void testGroupIdArtifactIdVersionGoalAtId()
|
||||
throws Exception
|
||||
{
|
||||
run( "groupId-artifactId-version-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:2.8:list@id", "maven-dependency-plugin:2.8:list (id)" );
|
||||
run( "groupId-artifactId-version-goal@id", "org.apache.maven.plugins:maven-dependency-plugin:3.1.1:list@id", "maven-dependency-plugin:3.1.1:list (id)" );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -66,6 +66,7 @@ org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5
|
|||
org.apache.maven.plugins:maven-assembly-plugin:3.1.0
|
||||
org.apache.maven.plugins:maven-clean-plugin:${stubPluginVersion}
|
||||
org.apache.maven.plugins:maven-clean-plugin:2.5
|
||||
org.apache.maven.plugins:maven-clean-plugin:3.1.0
|
||||
org.apache.maven.plugins:maven-compiler-plugin:${stubPluginVersion}
|
||||
org.apache.maven.plugins:maven-compiler-plugin:2.0.2
|
||||
org.apache.maven.plugins:maven-compiler-plugin:3.1
|
||||
|
@ -73,6 +74,8 @@ org.apache.maven.plugins:maven-compiler-plugin:3.8.1
|
|||
org.apache.maven.plugins:maven-compiler-plugin:3.10.1
|
||||
org.apache.maven.plugins:maven-dependency-plugin:2.7
|
||||
org.apache.maven.plugins:maven-dependency-plugin:2.8
|
||||
org.apache.maven.plugins:maven-dependency-plugin:3.1.1
|
||||
org.apache.maven.plugins:maven-dependency-plugin:3.3.0
|
||||
org.apache.maven.plugins:maven-deploy-plugin:${stubPluginVersion}
|
||||
org.apache.maven.plugins:maven-deploy-plugin:2.7
|
||||
org.apache.maven.plugins:maven-deploy-plugin:3.0.0-M1
|
||||
|
|
|
@ -36,7 +36,7 @@ under the License.
|
|||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.7</version><!-- version from core IT bootstrap -->
|
||||
<version>3.3.0</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
|
|
Loading…
Reference in New Issue