blob: 9c59ca41c9e6e6655ffa5b7e6c69aed287c947be [file] [log] [blame]
package org.apache.maven.integrationtests;
import java.io.File;
import org.apache.maven.it.IntegrationTestRunner;
public class MavenIT0128DistMgmtSiteUrlParentCalculationTest
extends AbstractMavenIntegrationTestCase
{
/**
* Test DistributionManagement Site-URL calculation when modules are in sibling dirs of parent. (MNG-3134)
*/
public void testit0128()
throws Exception
{
File testDir = extractTestResources( getClass(), "/it0128-distMgmtSiteUrlParentCalc" );
IntegrationTestRunner itr = new IntegrationTestRunner( testDir.getAbsolutePath() );
itr.executeGoal( "integration-test" );
itr.verifyErrorFreeLog();
itr.resetStreams();
}
}