Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Motivation (0.18 sec)

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

     */
    package org.apache.maven.execution;
    
    /**
     * Describes whether a target should be activated or not, and if that is required or optional.
     */
    enum ActivationSettings {
        ACTIVATION_OPTIONAL(true, true),
        ACTIVATION_REQUIRED(true, false),
        DEACTIVATION_OPTIONAL(false, true),
        DEACTIVATION_REQUIRED(false, false);
    
        /**
         * Should the target be active?
         */
        final boolean active;
        /**
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.7K bytes
    - Viewed (0)
Back to top