Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExplicitlyDeactivatedIds (0.12 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java

        List getActiveProfiles() throws ProfileActivationException;
    
        void addProfiles(List<Profile> profiles);
    
        Map getProfilesById();
    
        List<String> getExplicitlyActivatedIds();
    
        List<String> getExplicitlyDeactivatedIds();
    
        List getIdsActivatedByDefault();
    
        Properties getRequestProperties();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java

                defaultIds.add(profileId);
            }
        }
    
        public List<String> getExplicitlyActivatedIds() {
            return activatedIds;
        }
    
        public List<String> getExplicitlyDeactivatedIds() {
            return deactivatedIds;
        }
    
        public List getIdsActivatedByDefault() {
            return defaultIds;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            if (profileManager != null) {
                request.setActiveProfileIds(profileManager.getExplicitlyActivatedIds());
                request.setInactiveProfileIds(profileManager.getExplicitlyDeactivatedIds());
            } else {
                /*
                 * MNG-4900: Hack to workaround deficiency of legacy API which makes it impossible for plugins to access the
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top