Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for DependencyResolverResult (0.26 sec)

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

    /**
     * The result of a dependency resolution request.
     *
     * @since 4.0.0
     * @see DependencyResolver#resolve(DependencyResolverRequest)
     */
    @Experimental
    public interface DependencyResolverResult {
    
        /**
         * Gets the exceptions that occurred while building the dependency graph.
         *
         * @return the exceptions that occurred, never {@code null}
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        @Nonnull
        default DependencyResolverResult flatten(@Nonnull Session session, @Nonnull Project project) {
            return flatten(
                    DependencyResolverRequest.build(session, DependencyResolverRequest.RequestType.FLATTEN, project));
        }
    
        @Nonnull
        default DependencyResolverResult flatten(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

         */
        @Override
        public DependencyResolverResult resolve(DependencyResolverRequest request)
                throws DependencyResolverException, DependencyResolverException, ArtifactResolverException {
            InternalSession session =
                    InternalSession.from(nonNull(request, "request").getSession());
            DependencyResolverResult result;
            DependencyResolverResult collectorResult = collect(request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

     * and the field type can be {@link org.apache.maven.api.Node Node},
     * {@code List<}{@link org.apache.maven.api.Node Node}{@code >},
     * {@link org.apache.maven.api.services.DependencyResolverResult DependencyResolverResult},
     * {@code List<}{@link java.nio.file.Path Path}{@code >},
     * {@code Map<}{@link org.apache.maven.api.PathType PathType}{@code , List<}{@link java.nio.file.Path Path}{@code >>},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

    import java.util.Optional;
    
    import org.apache.maven.api.Project;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.services.BuilderProblem;
    import org.apache.maven.api.services.DependencyResolverResult;
    import org.apache.maven.api.services.ProjectBuilder;
    import org.apache.maven.api.services.ProjectBuilderException;
    import org.apache.maven.api.services.ProjectBuilderRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

        /**
         * Gets the result of the dependency resolution for the project.
         *
         * @return the result of the dependency resolution for the project
         */
        @Nonnull
        Optional<DependencyResolverResult> getDependencyResolverResult();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

    import org.apache.maven.api.annotations.Provider;
    
    /**
     * Represents a dependency node within a Maven project's dependency collector.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.DependencyResolverResult#getRoot()
     */
    @Experimental
    @Immutable
    @Provider
    public interface Node {
    
        /**
         * @return artifact for this node
         */
        @Nullable
        Artifact getArtifact();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

     * Path types are often exclusive. For example, a dependency should not be
     * both on the Java class-path and on the Java module-path.
     *
     * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths()
     *
     * @since 4.0.0
     */
    @Experimental
    public interface PathType {
        /**
         * The type for all paths that could not be placed in any of the types requested by a caller.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top