Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for activatedOpt (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

        /**
         * Mark a profile as optional and activated.
         * @param id The identifier of the profile.
         */
        public void activateOptionalProfile(String id) {
            this.activations.put(id, ActivationSettings.activatedOpt());
        }
    
        /**
         * Mark a profile as required and deactivated.
         * @param id The identifier of the profile.
         */
        public void deactivateRequiredProfile(String id) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 11 16:38:19 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

         * @param selector The selector of the project.
         */
        public void activateOptionalProject(String selector) {
            this.activations.add(new ProjectActivationSettings(selector, ActivationSettings.activatedOpt()));
        }
    
        /**
         * Mark a project as optional and activated.
         * @param selector The selector of the project.
         */
        public void activateOptionalProjectNonRecursive(String selector) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 11 16:38:19 GMT 2025
    - 7.2K bytes
    - Click Count (0)
Back to Top