Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for validateExternalProfiles (1.05 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         * @since 4.0.0
         */
        default void validateExternalProfiles(
                List<Profile> activeExternalProfiles,
                Model model,
                ModelBuildingRequest request,
                ModelProblemCollector problems) {
            // do nothing
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.validation.ModelValidator#validateExternalProfiles(java.util.List,org.apache.maven.model.Model,org.apache.maven.model.building.ModelBuildingRequest,org.apache.maven.model.building.ModelProblemCollector):METHOD_NEW_DEFAULT</exclude>
                </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            // profile injection
            for (Profile activeProfile : activePomProfiles) {
                profileInjector.injectProfile(inputModel, activeProfile, request, problems);
            }
    
            modelValidator.validateExternalProfiles(activeExternalProfiles, inputModel, request, problems);
            for (Profile activeProfile : activeExternalProfiles) {
                profileInjector.injectProfile(inputModel, activeProfile, request, problems);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            "distributionManagement.snapshotRepository.",
                            request);
                }
            }
        }
    
        @Override
        public void validateExternalProfiles(
                List<org.apache.maven.model.Profile> activeExternalProfiles,
                Model ma,
                ModelBuildingRequest request,
                ModelProblemCollector problems) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top