- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for DependencyResolverResult (0.21 sec)
-
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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
@Nonnull default DependencyResolverResult flatten( @Nonnull Session session, @Nonnull Project project, @Nonnull PathScope scope) { return flatten(DependencyResolverRequest.build( session, DependencyResolverRequest.RequestType.FLATTEN, project, scope)); } @Nonnull default DependencyResolverResult flatten(@Nonnull DependencyResolverRequest request) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 3.1K bytes - Viewed (0) -
impl/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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 2.6K bytes - Viewed (0) -
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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 3.2K bytes - Viewed (0) -
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: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* some enumeration values used only at runtime and therefore not available in {@code javax.tool}, * such as agent paths. * * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths() * * @since 4.0.0 */ @Experimental public enum JavaPathType implements PathType { /** * The path identified by the Java {@code --class-path} option.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 15K bytes - Viewed (0)