Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getValidationLevel (0.34 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

        }
    
        protected List<String> getProjectPrefixes(ModelBuildingRequest config) {
            return config.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_4_0
                    ? PROJECT_PREFIXES_4_0
                    : PROJECT_PREFIXES_3_1;
        }
    
        protected List<ValueSource> createValueSources(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

         */
        public DefaultModelBuildingRequest(ModelBuildingRequest request) {
            setPomPath(request.getPomPath());
            setModelSource(request.getModelSource());
            setValidationLevel(request.getValidationLevel());
            setProcessPlugins(request.isProcessPlugins());
            setTwoPhaseBuilding(request.isTwoPhaseBuilding());
            setLocationTracking(request.isLocationTracking());
            setProfiles(request.getProfiles());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the level of validation to perform on processed models.
         *
         * @return The level of validation to perform on processed models.
         */
        int getValidationLevel();
    
        /**
         * Sets the level of validation to perform on processed models. For building of projects,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top