Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setExcludedProjects (0.06 sec)

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

         * @return this MavenExecutionRequest
         * @since 3.2
         * @deprecated Since Maven 4: use {@link #getProjectActivation()}.
         */
        @Deprecated
        MavenExecutionRequest setExcludedProjects(List<String> projects);
    
        /**
         * @return the excluded projects, never {@code null}
         * @since 3.2
         * @deprecated Since Maven 4: use {@link #getProjectActivation()}.
         */
        @Deprecated
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

                this.projectActivation.overwriteActiveProjects(selectedProjects);
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setExcludedProjects(List<String> excludedProjects) {
            if (excludedProjects != null) {
                this.projectActivation.overwriteInactiveProjects(excludedProjects);
            }
    
            return this;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top