Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCoordinates (0.05 sec)

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

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactResolverRequest extends Request<Session> {
    
        @Nonnull
        Collection<? extends ArtifactCoordinates> getCoordinates();
    
        @Nullable
        List<RemoteRepository> getRepositories();
    
        @Nonnull
        static ArtifactResolverRequestBuilder builder() {
            return new ArtifactResolverRequestBuilder();
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java

            /**
             * Returns the coordinates of the resolved artifact.
             *
             * @return The {@link ArtifactCoordinates} of the artifact.
             */
            ArtifactCoordinates getCoordinates();
    
            /**
             * Returns the resolved artifact.
             *
             * @return The {@link DownloadedArtifact} instance.
             */
            DownloadedArtifact getArtifact();
    
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top