blob: 4447663ebb7b3ea960a324af95ebfa002cf56ff5 [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0045Test
extends AbstractMavenIntegrationTestCase
{
/**
* Test non-reactor behavior when plugin declares "@requiresProject false"
*/
public void testit0045()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0045" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.deleteArtifact( "org.apache.maven.its.plugins", "maven-it-plugin-no-project", "1.0", "maven-plugin" );
List cliOptions = new ArrayList();
cliOptions.add( "--no-plugin-registry" );
itr.executeGoal( "org.apache.maven.its.plugins:maven-it-plugin-no-project:light-touch", cliOptions );
itr.assertFilePresent( "target/touch.txt" );
itr.assertFileNotPresent( "subproject/target/touch.txt" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}