Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setActivePomProfiles (0.07 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java

            return this;
        }
    
        @Override
        public List<Profile> getActivePomProfiles(String modelId) {
            return activePomProfiles.get(modelId);
        }
    
        public DefaultModelBuildingResult setActivePomProfiles(String modelId, List<Profile> activeProfiles) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot null");
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            for (ModelData currentData : lineage) {
                String modelId = (currentData != superData) ? currentData.getId() : "";
    
                result.addModelId(modelId);
                result.setActivePomProfiles(modelId, currentData.getActiveProfiles());
                result.setRawModel(modelId, currentData.getRawModel());
            }
    
            if (!request.isTwoPhaseBuilding()) {
                build(request, result, importIds);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
Back to top