blob: 37e3547797e6162593393273b8134d3df0fc848d [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0074Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test that plugin-level configuration instances are not nullified by
* execution-level configuration instances.
*/
public void testit0074()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0074" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.executeGoal( "eclipse:eclipse" );
itr.assertFilePresent( ".classpath" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}