mirror of https://github.com/apache/maven.git
o Deleted IT thas has been migrated to the corresponding plugin project
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@698156 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2ab2aaeacb
commit
404803e326
|
@ -193,7 +193,6 @@ MavenITmng3645POMSyntaxErrorTest
|
||||||
suite.addTestSuite( MavenIT0073Test.class );
|
suite.addTestSuite( MavenIT0073Test.class );
|
||||||
suite.addTestSuite( MavenIT0072Test.class );
|
suite.addTestSuite( MavenIT0072Test.class );
|
||||||
suite.addTestSuite( MavenIT0071Test.class );
|
suite.addTestSuite( MavenIT0071Test.class );
|
||||||
suite.addTestSuite( MavenIT0070Test.class );
|
|
||||||
suite.addTestSuite( MavenIT0069Test.class );
|
suite.addTestSuite( MavenIT0069Test.class );
|
||||||
suite.addTestSuite( MavenIT0068Test.class );
|
suite.addTestSuite( MavenIT0068Test.class );
|
||||||
suite.addTestSuite( MavenIT0067Test.class );
|
suite.addTestSuite( MavenIT0067Test.class );
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
package org.apache.maven.integrationtests;
|
|
||||||
|
|
||||||
import org.apache.maven.it.Verifier;
|
|
||||||
import org.apache.maven.it.util.ResourceExtractor;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
public class MavenIT0070Test
|
|
||||||
extends AbstractMavenIntegrationTestCase
|
|
||||||
{
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Test a RAR generation.
|
|
||||||
*/
|
|
||||||
public void testit0070()
|
|
||||||
throws Exception
|
|
||||||
{
|
|
||||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0070" );
|
|
||||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
|
||||||
verifier.executeGoal( "package" );
|
|
||||||
verifier.assertFilePresent( "target/maven-it-it0070-1.0.rar" );
|
|
||||||
verifier.assertFilePresent( "target/maven-it-it0070-1.0.rar!/META-INF/ra.xml" );
|
|
||||||
verifier.assertFilePresent( "target/maven-it-it0070-1.0.rar!/SomeResource.txt" );
|
|
||||||
verifier.verifyErrorFreeLog();
|
|
||||||
verifier.resetStreams();
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
<project>
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<name>Maven Integration Test :: it0070</name>
|
|
||||||
<groupId>org.apache.maven.its.it0070</groupId>
|
|
||||||
<artifactId>maven-it-it0070</artifactId>
|
|
||||||
<description>Test a RAR generation.</description>
|
|
||||||
<packaging>rar</packaging>
|
|
||||||
<version>1.0</version>
|
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-rar-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<includeJar>false</includeJar>
|
|
||||||
<raXmlFile>src/main/custom/ra.xml</raXmlFile>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
||||||
<connector>
|
|
||||||
<fake-content></fake-content>
|
|
||||||
</connector>
|
|
Loading…
Reference in New Issue