blob: 3f8215abe59ca56843774706620c558560fc05e3 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0096Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test that plugin executions from >1 step of inheritance don't run multiple times.
*/
public void testit0096()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0096" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.invoke( "package" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}