Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for V20 (0.03 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     *
     */
    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
            // based on ModeBuildingResult.validationLevel
            BASE,
            V20,
            V30,
            V31,
            V40,
            V41
        }
    
        /**
         * Gets the identifier of the model from which the problem originated. The identifier is derived from the
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ProblemDetectingValueSource.java

                    msg += " Please use ${" + newPrefix + expression.substring(bannedPrefix.length()) + "} instead.";
                }
                problems.add(new ModelProblemCollectorRequest(Severity.WARNING, Version.V20).setMessage(msg));
            }
    
            return value;
        }
    
        @Override
        public List getFeedback() {
            return valueSource.getFeedback();
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

            FATAL, //
            ERROR, //
            WARNING //
        }
    
        /**
         * Version
         */
        enum Version {
            // based on ModeBuildingResult.validationLevel
            BASE,
            V20,
            V30,
            V31,
            V40,
            V41
        }
    
        /**
         * Gets the identifier of the model from which the problem originated. The identifier is derived from the
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top