Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getInactiveProfileIds (0.22 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileSelector.java

            Collection<String> activatedIds = new HashSet<>(context.getActiveProfileIds());
            Collection<String> deactivatedIds = new HashSet<>(context.getInactiveProfileIds());
    
            List<Profile> activeProfiles = new ArrayList<>(profiles.size());
            List<Profile> activePomProfilesByDefault = new ArrayList<>();
            boolean activatedPomProfileNotByDefault = false;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         */
        @Nonnull
        List<String> getActiveProfileIds();
    
        /**
         * List of profile ids that have been explicitly deactivated by the user.
         */
        @Nonnull
        List<String> getInactiveProfileIds();
    
        /**
         * Provides a map of system properties.
         */
        @Nonnull
        Map<String, String> getSystemProperties();
    
        /**
         * Provides a map of user properties.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

            this.activeProfileIds = unmodifiable(activeProfileIds);
            return this;
        }
    
        @Override
        public List<String> getInactiveProfileIds() {
            return inactiveProfileIds;
        }
    
        /**
         * Sets the identifiers of those profiles that should be deactivated by explicit demand.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.java

        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
        List<String> getInactiveProfileIds();
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         */
        void setActiveProfileIds(List<String> activeProfileIds);
    
        List<String> getActiveProfileIds();
    
        void setInactiveProfileIds(List<String> inactiveProfileIds);
    
        List<String> getInactiveProfileIds();
    
        /**
         * Add a {@link org.apache.maven.model.Profile} that has come from an external source. This may be from a custom
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            DefaultProfileActivationContext context = new DefaultProfileActivationContext();
    
            context.setActiveProfileIds(request.getActiveProfileIds());
            context.setInactiveProfileIds(request.getInactiveProfileIds());
            context.setSystemProperties(request.getSystemProperties());
            // enrich user properties with project packaging
            Map<String, String> userProperties = new HashMap<>(request.getUserProperties());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                : null);
                modelBuildingRequest.activeProfileIds(request.getActiveProfileIds());
                modelBuildingRequest.inactiveProfileIds(request.getInactiveProfileIds());
                modelBuildingRequest.systemProperties(toMap(request.getSystemProperties()));
                modelBuildingRequest.userProperties(toMap(request.getUserProperties()));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
Back to top