Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addProfileActivation (0.28 sec)

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

         * @param id The identifier of the profile.
         * @param active Should the profile be activated?
         * @param optional Can the build continue if the profile does not exist?
         */
        public void addProfileActivation(String id, boolean active, boolean optional) {
            final ActivationSettings settings = ActivationSettings.of(active, optional);
            this.activations.put(id, settings);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        }
    
                        boolean optional = profileId.charAt(0) == '?';
                        profileId = profileId.substring(optional ? 1 : 0);
    
                        profileActivation.addProfileActivation(profileId, active, optional);
                    }
                }
            }
        }
    
        private ExecutionListener determineExecutionListener() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top