Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getDependencyCollectionRequired (0.39 seconds)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         *
         * @return The scope of (transitive) dependencies that should be collected or {@code null} if none.
         * @since 3.0-alpha-3
         */
        public String getDependencyCollectionRequired() {
            return dependencyCollectionRequired;
        }
    
        // ----------------------------------------------------------------------
        // Project requirement
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                scopesToResolve.addAll(toScopes(mojoDescriptor.getDependencyResolutionRequired()));
    
                scopesToCollect.addAll(toScopes(mojoDescriptor.getDependencyCollectionRequired()));
            }
        }
    
        private Collection<String> toScopes(String classpath) {
            Collection<String> scopes = Collections.emptyList();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jun 12 14:55:55 GMT 2025
    - 21K bytes
    - Click Count (0)
Back to Top