DefaultMavenExecutionResultpublic interface MavenExecutionResult
| Modifier and Type | Method | Description |
|---|---|---|
void |
addBuildSummary(BuildSummary summary) |
Add the specified build summary.
|
MavenExecutionResult |
addException(java.lang.Throwable e) |
|
BuildSummary |
getBuildSummary(MavenProject project) |
Gets the build summary for the specified project.
|
DependencyResolutionResult |
getDependencyResolutionResult() |
|
java.util.List<java.lang.Throwable> |
getExceptions() |
|
MavenProject |
getProject() |
|
java.util.List<MavenProject> |
getTopologicallySortedProjects() |
|
boolean |
hasExceptions() |
|
MavenExecutionResult |
setDependencyResolutionResult(DependencyResolutionResult result) |
|
MavenExecutionResult |
setProject(MavenProject project) |
|
MavenExecutionResult |
setTopologicallySortedProjects(java.util.List<MavenProject> projects) |
MavenExecutionResult setProject(MavenProject project)
MavenProject getProject()
MavenExecutionResult setTopologicallySortedProjects(java.util.List<MavenProject> projects)
java.util.List<MavenProject> getTopologicallySortedProjects()
MavenExecutionResult setDependencyResolutionResult(DependencyResolutionResult result)
DependencyResolutionResult getDependencyResolutionResult()
java.util.List<java.lang.Throwable> getExceptions()
MavenExecutionResult addException(java.lang.Throwable e)
boolean hasExceptions()
BuildSummary getBuildSummary(MavenProject project)
project - The project to get the build summary for, must not be null.null if the project has not been built (yet).void addBuildSummary(BuildSummary summary)
summary - The build summary to add, must not be null.