Class DefaultModelValidator
java.lang.Object
org.apache.maven.model.validation.DefaultModelValidator
- All Implemented Interfaces:
ModelValidator
- Author:
- Trygve Laugstøl
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
validateDependencyVersion
(ModelProblemCollector problems, Dependency d, String prefix) void
validateEffectiveModel
(Model m, ModelBuildingRequest request, ModelProblemCollector problems) Checks the specified (effective) model for missing or invalid values.void
validateRawModel
(Model m, ModelBuildingRequest request, ModelProblemCollector problems) Checks the specified (raw) model for missing or invalid values.
-
Constructor Details
-
DefaultModelValidator
-
-
Method Details
-
validateRawModel
Description copied from interface:ModelValidator
Checks the specified (raw) model for missing or invalid values. The raw model is directly created from the POM file and has not been subjected to inheritance, interpolation or profile/default injection.- Specified by:
validateRawModel
in interfaceModelValidator
- Parameters:
m
- The model to validate, must not benull
.request
- The model building request that holds further settings, must not benull
.problems
- The container used to collect problems that were encountered, must not benull
.
-
validateEffectiveModel
public void validateEffectiveModel(Model m, ModelBuildingRequest request, ModelProblemCollector problems) Description copied from interface:ModelValidator
Checks the specified (effective) model for missing or invalid values. The effective model is fully assembled and has undergone inheritance, interpolation and other model operations.- Specified by:
validateEffectiveModel
in interfaceModelValidator
- Parameters:
m
- The model to validate, must not benull
.request
- The model building request that holds further settings, must not benull
.problems
- The container used to collect problems that were encountered, must not benull
.
-
validateDependencyVersion
protected void validateDependencyVersion(ModelProblemCollector problems, Dependency d, String prefix) - Since:
- 3.2.4
-