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@698166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
404803e326
commit
33978a0814
|
@ -229,7 +229,6 @@ MavenITmng3645POMSyntaxErrorTest
|
|||
suite.addTestSuite( MavenIT0036Test.class );
|
||||
suite.addTestSuite( MavenIT0035Test.class );
|
||||
suite.addTestSuite( MavenIT0034Test.class );
|
||||
suite.addTestSuite( MavenIT0033Test.class );
|
||||
suite.addTestSuite( MavenIT0032Test.class );
|
||||
suite.addTestSuite( MavenIT0031Test.class );
|
||||
suite.addTestSuite( MavenIT0030Test.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 MavenIT0033Test
|
||||
extends AbstractMavenIntegrationTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* Test an EAR generation
|
||||
*/
|
||||
public void testit0033()
|
||||
throws Exception
|
||||
{
|
||||
File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/it0033" );
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.executeGoal( "package" );
|
||||
verifier.assertFilePresent( "target/maven-it-it0033-1.0.ear" );
|
||||
verifier.assertFilePresent( "target/maven-it-it0033-1.0.ear!/META-INF/application.xml" );
|
||||
verifier.assertFilePresent( "target/maven-it-it0033-1.0.ear!/META-INF/appserver-application.xml" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<name>Maven Integration Test :: it0033</name>
|
||||
<groupId>org.apache.maven.its.it0033</groupId>
|
||||
<artifactId>maven-it-it0033</artifactId>
|
||||
<description>Test an EAR generation</description>
|
||||
<packaging>ear</packaging>
|
||||
<version>1.0</version>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-ear-plugin</artifactId>
|
||||
<configuration>
|
||||
<generateApplicationXml>true</generateApplicationXml>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<appserver-app>
|
||||
<whatever/>
|
||||
</appserver-app>
|
Loading…
Reference in New Issue