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.InputLocation;
23  import org.apache.maven.model.Model;
24  import org.apache.maven.model.building.DefaultModelBuildingRequest;
25  import org.apache.maven.model.building.ModelBuildingRequest;
26  import org.apache.maven.model.building.ModelProblem;
27  import org.apache.maven.model.building.ModelProblemCollector;
28  import org.apache.maven.model.building.ModelProblem.Severity;
29  import org.codehaus.plexus.component.annotations.Component;
30  import org.codehaus.plexus.component.annotations.Requirement;
31  
32  /**
33   * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
34   */
35  @Component( role = ModelValidator.class )
36  @Deprecated
37  public class DefaultModelValidator
38      implements ModelValidator
39  {
40  
41      @Requirement
42      private org.apache.maven.model.validation.ModelValidator modelValidator;
43  
44      public ModelValidationResult validate( Model model )
45      {
46          ModelValidationResult result = new ModelValidationResult();
47  
48          ModelBuildingRequest request =
49              new DefaultModelBuildingRequest().setValidationLevel( ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0 );
50  
51          SimpleModelProblemCollector problems = new SimpleModelProblemCollector( result );
52  
53          modelValidator.validateEffectiveModel( model, request, problems );
54  
55          return result;
56      }
57  
58      private static class SimpleModelProblemCollector
59          implements ModelProblemCollector
60      {
61  
62          ModelValidationResult result;
63  
64          public SimpleModelProblemCollector( ModelValidationResult result )
65          {
66              this.result = result;
67          }
68  
69          public void add( Severity severity, String message, InputLocation location, Exception cause )
70          {
71              if ( !ModelProblem.Severity.WARNING.equals( severity ) )
72              {
73                  result.addMessage( message );
74              }
75          }
76  
77      }
78  
79  }