mirror of https://github.com/apache/maven.git
[MNG-4238] Renaming to correct MNG. This is an IT to check that build extensions can supply the ArtifactHandler for the project in which they are declared.
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@793749 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c9a7107c0a
commit
9cee8f7c1f
|
@ -30,17 +30,17 @@ import java.io.IOException;
|
|||
* @author John Casey
|
||||
* @version $Id$
|
||||
*/
|
||||
public class MavenITmng3506ArtifactHandlerExtensionUsageTest
|
||||
public class MavenITmng4238ArtifactHandlerExtensionUsageTest
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
private static final String GID = "org.apache.maven.it.mng3506";
|
||||
private static final String AID = "mng-3506";
|
||||
private static final String GID = "org.apache.maven.it.mng4238";
|
||||
private static final String AID = "mng-4238";
|
||||
private static final String VERSION = "1";
|
||||
private static final String TYPE = "jar";
|
||||
private static final String BAD_TYPE = "coreit";
|
||||
|
||||
public MavenITmng3506ArtifactHandlerExtensionUsageTest()
|
||||
public MavenITmng4238ArtifactHandlerExtensionUsageTest()
|
||||
{
|
||||
super( "(2.2.0,)" );
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ public class MavenITmng3506ArtifactHandlerExtensionUsageTest
|
|||
public void testProjectPackagingUsage()
|
||||
throws IOException, VerificationException
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-3506" );
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4238" );
|
||||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.it.mng3506</groupId>
|
||||
<artifactId>mng-3506</artifactId>
|
||||
<groupId>org.apache.maven.it.mng4238</groupId>
|
||||
<artifactId>mng-4238</artifactId>
|
||||
<version>1</version>
|
||||
|
||||
<!-- This is the critical piece for the test.
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.maven.it.mng3506;
|
||||
package org.apache.maven.it.mng4238;
|
||||
|
||||
/**
|
||||
* Hello world!
|
Loading…
Reference in New Issue