Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PathScope (0.04 sec)

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

                this.verbose = verbose;
                return this;
            }
    
            @Nonnull
            public DependencyResolverRequestBuilder pathScope(@Nullable PathScope pathScope) {
                this.pathScope = pathScope;
                return this;
            }
    
            /**
             * Filters the types of paths to include in the result.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:30:49 UTC 2025
    - 23K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            Node root = session.collectDependencies(artifact, PathScope.MAIN_RUNTIME);
            assertNotNull(root);
    
            DependencyResolverResult result =
                    session.getService(DependencyResolver.class).resolve(session, project, PathScope.MAIN_RUNTIME);
            assertNotNull(result);
            List<Dependency> deps = new ArrayList<>(result.getDependencies().keySet());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param scope the {link PathScope} to collect dependencies, must not be {@code null}
         * @return root node of the dependency graph for the given artifact
         *
         * @see org.apache.maven.api.services.DependencyResolver#collect(Session, Artifact, PathScope)
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency collection failed
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
                field.setAccessible(true);
                String pathScope = resolution.getPathScope();
                Object result = null;
                if (pathScope != null && !pathScope.isEmpty()) {
                    // resolution
                    PathScope ps = sessionV4.getService(PathScopeRegistry.class).require(pathScope);
                    DependencyResolverResult res =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

    import java.util.stream.Collectors;
    
    import org.apache.maven.api.ArtifactCoordinates;
    import org.apache.maven.api.DependencyScope;
    import org.apache.maven.api.Node;
    import org.apache.maven.api.PathScope;
    import org.apache.maven.api.SessionData;
    import org.apache.maven.api.feature.Features;
    import org.apache.maven.api.model.Dependency;
    import org.apache.maven.api.model.DistributionManagement;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>the name of the field to be injected</description>
            </field>
            <field>
              <name>pathScope</name>
              <required>false</required>
              <version>2.0.0+</version>
              <type>String</type>
              <description>pathScope used to flatten dependencies</description>
            </field>
            <field>
              <name>requestType</name>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top