blob: cb7d2a8b126b1ab11ecb9c4a1213691e9d819266 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0104Test
extends AbstractMavenIntegrationTestCase
{
/**
* Verify that plugin configurations are resolved correctly.
*/
public void testit0104()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0104" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.invoke( "test" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}