Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ActivationSettings (0.73 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java

        /**
         * Should the build continue if the target is not present?
         */
        final boolean optional;
    
        ActivationSettings(final boolean active, final boolean optional) {
            this.active = active;
            this.optional = optional;
        }
    
        static ActivationSettings of(final boolean active, final boolean optional) {
            if (optional) {
                return active ? ACTIVATION_OPTIONAL : DEACTIVATION_OPTIONAL;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

            /**
             * This describes how/when to active or deactivate the project.
             */
            final ActivationSettings activationSettings;
    
            ProjectActivationSettings(String selector, ActivationSettings activationSettings) {
                this.selector = selector;
                this.activationSettings = activationSettings;
            }
        }
    
        /**
         * List of activated and deactivated projects.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         */
        public void addProfileActivation(String id, boolean active, boolean optional) {
            final ActivationSettings settings = ActivationSettings.of(active, optional);
            this.activations.put(id, settings);
        }
    
        private Set<String> getProfileIds(final Predicate<ActivationSettings> predicate) {
            return this.activations.entrySet().stream()
                    .filter(e -> predicate.test(e.getValue()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top