Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 110 for transitive (0.06 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        Node collectDependencies(@Nonnull Project project, @Nonnull PathScope scope);
    
        /**
         * Collects the transitive dependencies of some artifacts and builds a dependency graph. Note that this operation is
         * only concerned about determining the coordinates of the transitive dependencies and does not actually resolve the
         * artifact files.
         * <p>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 03 14:18:26 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

     * </ul>
     * <p>
     * <b>Dependency Filtering</b>: For non-POM projects with dependency management, the builder:
     * <ul>
     *   <li>Filters dependencies to include only those with transitive scopes (compile/runtime)</li>
     *   <li>Applies managed dependency metadata (version, scope, optional flag, exclusions) to direct dependencies</li>
     *   <li>Removes managed dependencies that are not used by direct dependencies</li>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Nov 27 07:40:26 GMT 2025
    - 21.2K bytes
    - Click Count (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            Artifact artifact = getArtifact("c", res.getArtifacts());
            // local wins now, and irrelevant if not local as test/provided aren't transitive
            // assertEquals( Artifact.SCOPE_COMPILE, artifact.getArtifactScope(), "Check artifactScope" );
            assertEquals(Artifact.SCOPE_TEST, artifact.getScope(), "Check artifactScope");
        }
    
        @Test
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 43K bytes
    - Click Count (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /**
         * Gets the scope of (transitive) dependencies that should be collected. Dependency collection refers to the process
         * of calculating the complete dependency tree in terms of artifact coordinates. In contrast to dependency
         * resolution, this does not include the download of the files for the dependency artifacts. It is meant for mojos
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  5. okhttp/build.gradle.kts

      // Set the Java release version.
      options.release.set(9)
    
      // Ignore warnings about using 'requires transitive' on automatic modules.
      // not needed when compiling with recent JDKs, e.g. 17
      options.compilerArgs.add("-Xlint:-requires-transitive-automatic")
    
      // Patch the compileKotlinJvm output classes into the compilation so exporting packages works correctly.
      options.compilerArgs.addAll(
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sat Nov 01 12:18:11 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

    import org.apache.maven.api.annotations.NotThreadSafe;
    import org.apache.maven.api.annotations.Nullable;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A request to collect the transitive dependencies and to build a dependency graph from them. There are three ways to
     * create a dependency graph. First, only the root dependency can be given. Second, a root dependency and direct
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 07:30:49 GMT 2025
    - 23K bytes
    - Click Count (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            // whether we are working on a transitive dependency or not. This
            // allows depMgmt to always override transitive dependencies, while
            // explicit child override depMgmt (viz. depMgmt should only
            // provide defaults to children, but should override transitives).
            // We can do this by calling isChildOfRootNode on the current node.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java

                        .get());
                options.addOption(Option.builder(IGNORE_TRANSITIVE_REPOSITORIES)
                        .longOpt("ignore-transitive-repositories")
                        .desc("If set, Maven will ignore remote repositories introduced by transitive dependencies.")
                        .get());
                options.addOption(Option.builder(AT_FILE)
                        .longOpt("at-file")
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 25 17:39:57 GMT 2025
    - 14.8K bytes
    - Click Count (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                effectiveScope = originalScope;
            } else if (Artifact.SCOPE_TEST.equals(originalScope) || Artifact.SCOPE_PROVIDED.equals(originalScope)) {
                // test and provided are not transitive, so exclude them
                effectiveScope = null;
            } else if (Artifact.SCOPE_SYSTEM.equals(originalScope)) {
                // system scope come through unchanged...
                effectiveScope = Artifact.SCOPE_SYSTEM;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 25 12:03:50 GMT 2025
    - 30.4K bytes
    - Click Count (0)
  10. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .build());
            options.addOption(Option.builder(IGNORE_TRANSITIVE_REPOSITORIES)
                    .longOpt("ignore-transitive-repositories")
                    .desc("If set, Maven will ignore remote repositories introduced by transitive dependencies.")
                    .build());
    
            // Parameters handled by script
            options.addOption(Option.builder()
                    .longOpt(DEBUG)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Aug 06 04:56:48 GMT 2025
    - 17.8K bytes
    - Click Count (0)
Back to Top