Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DEACTIVATION_REQUIRED (0.13 sec)

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

     */
    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;
        /**
         * Should the build continue if the target is not present?
         */
        final boolean optional;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java

         * Mark a profile as required and deactivated.
         * @param id The identifier of the profile.
         */
        public void deactivateRequiredProfile(String id) {
            this.activations.put(id, ActivationSettings.DEACTIVATION_REQUIRED);
        }
    
        /**
         * Mark a profile as optional and deactivated.
         * @param id The identifier of the profile.
         */
        public void deactivateOptionalProfile(String id) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

         * @param selector The selector of the project.
         */
        public void deactivateRequiredProject(String selector) {
            this.activations.add(new ProjectActivationSettings(selector, ActivationSettings.DEACTIVATION_REQUIRED));
        }
    
        /**
         * Mark a project as optional and deactivated.
         * @param selector The selector of the project.
         */
        public void deactivateOptionalProject(String selector) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top