Fix the groupId for the C dependency in the MNG-2861 IT (also change the method name to reflect the proper MNG #)

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@636447 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2008-03-12 18:49:03 +00:00
parent 7906b1b47e
commit ba47b6b7c9
2 changed files with 6 additions and 11 deletions

View File

@ -1,14 +1,11 @@
package org.apache.maven.integrationtests;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.apache.maven.artifact.versioning.InvalidVersionSpecificationException;
import org.apache.maven.integrationtests.AbstractMavenIntegrationTestCase;
import org.apache.maven.it.Verifier;
import org.apache.maven.it.util.ResourceExtractor;
import java.io.File;
public class MavenITmng2861RelocationsAndRanges
extends AbstractMavenIntegrationTestCase
@ -18,11 +15,11 @@ public MavenITmng2861RelocationsAndRanges()
{
super( "(2.0.8,)" );
}
public void testitMNG2123 ()
public void testitMNG2861 ()
throws Exception
{
// The testdir is computed from the location of this
// file.
@ -43,8 +40,6 @@ public void testitMNG2123 ()
verifier.deleteArtifact( "org.apache.maven.its.mng2123", "B", "1.0-SNAPSHOT", "jar" );
verifier.deleteArtifact( "org.apache.maven.its.mng2123", "C", "1.0-SNAPSHOT", "jar" );
List cliOptions = new ArrayList();
cliOptions.add( "-N" );
verifier.executeGoal( "install" );
verifier.verifyErrorFreeLog();

View File

@ -16,7 +16,7 @@
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>test</groupId>
<groupId>org.apache.maven.its.mng2861</groupId>
<artifactId>C</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>