Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 329 for transitive (0.05 seconds)

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

        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
        DependencyScope(String id, boolean transitive) {
            this.id = id;
            this.transitive = transitive;
        }
    
        /**
         * The {@code id} uniquely represents a value for this extensible enum.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Mar 19 14:33:26 GMT 2025
    - 4K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

        /**
         * Resolves the transitive dependencies of the specified project.
         *
         * @param project         The project whose dependencies should be resolved, must not be {@code null}.
         * @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}.
         * @param session         The current build session, must not be {@code null}.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 5.4K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
         * @return The downstream projects in the build order, never {@code null}.
         */
        List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive);
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.7K bytes
    - Click Count (0)
  4. okhttp/src/jvmMain/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3 {
      requires transitive kotlin.stdlib;
      requires transitive okio;
      requires java.logging;
      exports okhttp3;
      exports okhttp3.internal to okhttp3.logging, okhttp3.sse, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, okhttp3.coroutines, okhttp3.tls;
      exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 08:30:26 GMT 2025
    - 969 bytes
    - Click Count (0)
  5. guava-testlib/src/module-info.java

     * the License.
     */
    
    /** Guava Testlib */
    module com.google.common.testlib {
      requires java.logging;
      requires transitive com.google.common;
      requires transitive junit;
      requires static com.google.errorprone.annotations;
      requires static com.google.j2objc.annotations;
      requires static org.jspecify;
    
      exports com.google.common.collect.testing;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Apr 01 21:16:20 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/ProjectDependenciesResolver.java

     * under the License.
     */
    package org.apache.maven.project;
    
    /**
     * Resolves the transitive dependencies of a project.
     *
     * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    public interface ProjectDependenciesResolver {
    
        /**
         * Resolves the transitive dependencies of a project.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 10:13:56 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies exclusions listed in dependencyManagement are valid for
     * transitive dependencies.
     *
     */
    @Deprecated
    @SuppressWarnings("checkstyle:UnusedLocalVariable")
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 5K bytes
    - Click Count (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies scope inheritance of direct and transitive dependencies.
     *
     * Should show three behaviors:
     *
     * 1. dependencyManagement should override the scope of transitive dependencies.
     * 2. Direct dependencies should override the scope of dependencyManagement.
     * 3. Direct dependencies should inherit scope from dependencyManagement when
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 3.7K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

         */
        DependencyNode getDependencyGraph();
    
        /**
         * Gets the transitive dependencies of the project that were not excluded by
         * {@link DependencyResolutionRequest#getResolutionFilter()}. This list is a union of the results from
         * {@link #getResolvedDependencies()} and {@link #getUnresolvedDependencies()}.
         *
         * @return The transitive dependencies, never {@code null}.
         */
        List<Dependency> getDependencies();
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 10:13:56 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  10. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

        }
    
        @Override
        public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) {
            if (transitive) {
                throw new RuntimeException("Not implemented yet");
            }
            List<MavenProject> result = new ArrayList<>();
            for (Dependency dependency : getDependencies()) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 8.6K bytes
    - Click Count (0)
Back to Top