All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.shared.downloader.Downloader Maven / Gradle / Ivy

The newest version!
package org.apache.maven.shared.downloader;

import org.apache.maven.artifact.repository.ArtifactRepository;

import java.io.File;
import java.util.List;

/**
 * @author Jason van Zyl
 */
public interface Downloader
{
    String ROLE = Downloader.class.getName();

    public File download( String groupId,
                          String artifactId,
                          String version,
                          File localRepository,
                          String[] remoteRepositories )
        throws DownloadException, DownloadNotFoundException;

    public File download( String groupId,
                          String artifactId,
                          String version,
                          ArtifactRepository localRepository,
                          List remoteRepositories )
        throws DownloadException, DownloadNotFoundException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy