View Javadoc
1   package org.apache.maven.project.validation;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.model.Model;
23  import org.apache.maven.model.building.DefaultModelBuildingRequest;
24  import org.apache.maven.model.building.ModelBuildingRequest;
25  import org.apache.maven.model.building.ModelProblem;
26  import org.apache.maven.model.building.ModelProblemCollector;
27  import org.apache.maven.model.building.ModelProblemCollectorRequest;
28  import org.codehaus.plexus.component.annotations.Component;
29  import org.codehaus.plexus.component.annotations.Requirement;
30  
31  /**
32   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
33   */
34  @Component( role = ModelValidator.class )
35  @Deprecated
36  public class DefaultModelValidator
37      implements ModelValidator
38  {
39  
40      @Requirement
41      private org.apache.maven.model.validation.ModelValidator modelValidator;
42  
43      public ModelValidationResult validate( Model model )
44      {
45          ModelValidationResult result = new ModelValidationResult();
46  
47          ModelBuildingRequest request =
48              new DefaultModelBuildingRequest().setValidationLevel( ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0 );
49  
50          SimpleModelProblemCollector problems = new SimpleModelProblemCollector( result );
51  
52          modelValidator.validateEffectiveModel( model, request, problems );
53  
54          return result;
55      }
56  
57      private static class SimpleModelProblemCollector
58          implements ModelProblemCollector
59      {
60  
61          ModelValidationResult result;
62  
63          public SimpleModelProblemCollector( ModelValidationResult result )
64          {
65              this.result = result;
66          }
67  
68          public void add( ModelProblemCollectorRequest req )
69          {
70              if ( !ModelProblem.Severity.WARNING.equals( req.getSeverity() ) )
71              {
72                  result.addMessage( req.getMessage() );
73              }
74          }
75      }
76  }