Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Value (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginParametersValidator.java

                return false;
            }
    
            if (isIgnoredProperty(strValue)) {
                return false;
            }
    
            // for declaration like @Parameter( property = "config.property" )
            // the value will contain ${config.property}
    
            try {
                return expressionEvaluator.evaluate(strValue) != null;
            } catch (ExpressionEvaluationException e) {
                // not important
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.1K bytes
    - Viewed (0)
Back to top