View Javadoc
1   package org.apache.maven.plugins.enforcer.utils;
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.execution.MavenSession;
23  import org.apache.maven.plugin.MojoExecution;
24  import org.apache.maven.plugin.descriptor.MojoDescriptor;
25  import org.apache.maven.plugins.enforcer.EnforcerExpressionEvaluator;
26  import org.apache.maven.project.MavenProject;
27  import org.apache.maven.project.path.PathTranslator;
28  import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluationException;
29  
30  // TODO: Auto-generated Javadoc
31  /**
32   * The Class MockEnforcerExpressionEvaluator.
33   */
34  public class MockEnforcerExpressionEvaluator
35      extends EnforcerExpressionEvaluator
36  {
37  
38      /**
39       * Instantiates a new mock enforcer expression evaluator.
40       *
41       * @param theContext the the context
42       * @param thePathTranslator the the path translator
43       * @param theProject the the project
44       */
45      public MockEnforcerExpressionEvaluator( MavenSession theContext, PathTranslator thePathTranslator,
46                                              MavenProject theProject )
47      {
48          super( theContext, thePathTranslator, theProject, new MojoExecution( new MojoDescriptor() ) );
49          // TODO Auto-generated constructor stub
50      }
51  
52      /*
53       * (non-Javadoc)
54       *
55       * @see org.apache.maven.plugin.PluginParameterExpressionEvaluator#evaluate(java.lang.String)
56       */
57      public Object evaluate( String expr )
58          throws ExpressionEvaluationException
59      {
60          if ( expr != null )
61          {
62              // just remove the ${ } and return the name as the value
63              return expr.replaceAll( "\\$\\{|}", "" );
64          }
65          else
66          {
67              return expr;
68          }
69      }
70  
71  }