Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ private void run( String id, String goal, String expectedInvocation )
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)" );
}

/**
Expand All @@ -64,7 +64,7 @@ public void testPrefixGoalAtId()
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)" );
}

/**
Expand All @@ -73,30 +73,30 @@ public void testPrefixVersionGoal()
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)" );
}
}
3 changes: 3 additions & 0 deletions core-it-suite/src/test/resources-filtered/bootstrap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,16 @@ 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
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down