Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getRequiredActiveProfileIds (0.09 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        }
    
        private Map<String, String> getPropertiesFromRequestedProfiles(MavenExecutionRequest request) {
            HashSet<String> activeProfileId =
                    new HashSet<>(request.getProfileActivation().getRequiredActiveProfileIds());
            activeProfileId.addAll(request.getProfileActivation().getOptionalActiveProfileIds());
    
            return request.getProfiles().stream()
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Mar 19 13:42:58 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            final Set<String> allAvailableProfiles = getAllProfiles(session);
    
            final Set<String> requiredProfiles = new HashSet<>();
            requiredProfiles.addAll(profileActivation.getRequiredActiveProfileIds());
            requiredProfiles.addAll(profileActivation.getRequiredInactiveProfileIds());
    
            // Check whether the required profiles were found in any of the projects we're building.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Dec 29 10:43:38 GMT 2025
    - 28.8K bytes
    - Click Count (1)
Back to Top