Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setInactiveProfileIds (0.09 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            ProfileManager profileManager = configuration.getGlobalProfileManager();
            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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         *
         * @param inactiveProfileIds The identifiers of those profiles to deactivate, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ModelBuildingRequest setInactiveProfileIds(List<String> inactiveProfileIds);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

                projectBuildingRequest.setPluginArtifactRepositories(getPluginArtifactRepositories());
                projectBuildingRequest.setActiveProfileIds(getActiveProfiles());
                projectBuildingRequest.setInactiveProfileIds(getInactiveProfiles());
                projectBuildingRequest.setProfiles(getProfiles());
                projectBuildingRequest.setProcessPlugins(true);
                projectBuildingRequest.setBuildStartInstant(getStartInstant());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top