Package org.apache.maven.project
Interface ProjectBuilder
- All Known Implementing Classes:
- DefaultProjectBuilder
public interface ProjectBuilder
Builds in-memory descriptions of projects.
- 
Method SummaryModifier and TypeMethodDescriptionbuild(File projectFile, ProjectBuildingRequest request) Builds a project descriptor from the specified POM file.build(List<File> pomFiles, boolean recursive, ProjectBuildingRequest request) Builds the projects for the specified POM files and optionally their children.build(Artifact projectArtifact, boolean allowStubModel, ProjectBuildingRequest request) Builds a project descriptor for the specified artifact.build(Artifact projectArtifact, ProjectBuildingRequest request) Builds a project descriptor for the specified artifact.build(ModelSource modelSource, ProjectBuildingRequest request) Builds a project descriptor for the specified model source.
- 
Method Details- 
buildProjectBuildingResult build(File projectFile, ProjectBuildingRequest request) throws ProjectBuildingException Builds a project descriptor from the specified POM file.- Parameters:
- projectFile- The POM file to build the project from, must not be- null.
- request- The project building request that holds further parameters, must not be- null.
- Returns:
- The result of the project building, never null.
- Throws:
- ProjectBuildingException- If the project descriptor could not be successfully built.
 
- 
buildProjectBuildingResult build(Artifact projectArtifact, ProjectBuildingRequest request) throws ProjectBuildingException Builds a project descriptor for the specified artifact.- Parameters:
- projectArtifact- The POM artifact to build the project from, must not be- null.
- request- The project building request that holds further parameters, must not be- null.
- Returns:
- The result of the project building, never null.
- Throws:
- ProjectBuildingException- If the project descriptor could not be successfully built.
 
- 
buildProjectBuildingResult build(Artifact projectArtifact, boolean allowStubModel, ProjectBuildingRequest request) throws ProjectBuildingException Builds a project descriptor for the specified artifact.- Parameters:
- projectArtifact- The POM artifact to build the project from, must not be- null.
- allowStubModel- A flag controlling the case of a missing POM artifact. If- trueand the specified POM artifact does not exist, a simple stub model will be returned. If- false, an exception will be thrown.
- request- The project building request that holds further parameters, must not be- null.
- Returns:
- The result of the project building, never null.
- Throws:
- ProjectBuildingException- If the project descriptor could not be successfully built.
 
- 
buildProjectBuildingResult build(ModelSource modelSource, ProjectBuildingRequest request) throws ProjectBuildingException Builds a project descriptor for the specified model source.- Parameters:
- modelSource- The source of the model to build the project descriptor from, must not be- null.
- request- The project building request that holds further parameters, must not be- null.
- Returns:
- The result of the project building, never null.
- Throws:
- ProjectBuildingException- If the project descriptor could not be successfully built.
- See Also:
 
- 
buildList<ProjectBuildingResult> build(List<File> pomFiles, boolean recursive, ProjectBuildingRequest request) throws ProjectBuildingException Builds the projects for the specified POM files and optionally their children.- Parameters:
- pomFiles- The POM files to build, must not be- null.
- recursive-- trueto recursively build submodules referenced by the POM files,- falseto build only the specified POM files.
- request- The project builder configuration that provides further parameters, must not be- null.
- Returns:
- The results of the project builder where each result corresponds to one project that was built, never
         null.
- Throws:
- ProjectBuildingException- If an error was encountered during building of any project.- ProjectBuildingException.getResults()provides access to the details of the problems.
 
 
-