Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setExcludedProjects (0.12 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top