mirror of https://github.com/apache/maven.git
o Adjusted setup
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@981686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
607283fabe
commit
a308b84318
|
@ -3,8 +3,6 @@ package org.apache.maven.it;
|
|||
import org.apache.maven.it.util.ResourceExtractor;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
|
@ -48,11 +46,9 @@ public class MavenITmng4633DualCompilerExecutionsWeaveModeTest
|
|||
|
||||
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
|
||||
verifier.setAutoclean( false );
|
||||
List cliOptions = new ArrayList();
|
||||
cliOptions.add( "-T" );
|
||||
cliOptions.add( "2W" );
|
||||
verifier.setCliOptions(cliOptions);
|
||||
verifier.executeGoal("install");
|
||||
verifier.getCliOptions().add( "-T" );
|
||||
verifier.getCliOptions().add( "2W" );
|
||||
verifier.executeGoal( "install" );
|
||||
verifier.verifyErrorFreeLog();
|
||||
verifier.resetStreams();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue