Package org.apache.maven.execution
Class BuildSuccess
java.lang.Object
org.apache.maven.execution.BuildSummary
org.apache.maven.execution.BuildSuccess
Summarizes the result of a successful project build in the reactor.
- 
Constructor Summary
ConstructorsConstructorDescriptionBuildSuccess(MavenProject project, long time) Creates a new build summary for the specified project.BuildSuccess(MavenProject project, long wallTime, long execTime) Creates a new build summary for the specified project. - 
Method Summary
Methods inherited from class org.apache.maven.execution.BuildSummary
getProject, getTime, getWallTime 
- 
Constructor Details
- 
BuildSuccess
Creates a new build summary for the specified project.- Parameters:
 project- The project being summarized, must not benull.time- The build time of the project in milliseconds.
 - 
BuildSuccess
Creates a new build summary for the specified project.- Parameters:
 project- The project being summarized, must not benull.wallTime- The wall time of the project in milliseconds.execTime- The exec time of the project in milliseconds.
 
 -