plugin needs to be installed before the site report can process it

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@639471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brian E Fox 2008-03-20 21:36:54 +00:00
parent 5025b2477d
commit 5436223733
1 changed files with 5 additions and 1 deletions

View File

@ -19,7 +19,11 @@ public class MavenITmng3473PluginReportCrash
Verifier verifier = new Verifier( testDir.getAbsolutePath() );
verifier.executeGoal( "install site" );
verifier.executeGoal( "install" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
verifier.executeGoal( "site" );
verifier.verifyErrorFreeLog();
verifier.resetStreams();
}