A RepositoryHandler
manages a set of repositories, allowing repositories to be defined and queried.
Fields inherited from class | Fields |
---|---|
interface ArtifactRepositoryContainer |
DEFAULT_MAVEN_CENTRAL_REPO_NAME, DEFAULT_MAVEN_LOCAL_REPO_NAME, MAVEN_CENTRAL_URL |
Type | Name and description |
---|---|
FlatDirectoryArtifactRepository |
flatDir(Map<String, ?> args) Adds a resolver that looks into a number of directories for artifacts. |
FlatDirectoryArtifactRepository |
flatDir(Closure configureClosure) Adds an configures a repository which will look for dependencies in a number of local directories. |
FlatDirectoryArtifactRepository |
flatDir(Action<? super FlatDirectoryArtifactRepository> action) Adds an configures a repository which will look for dependencies in a number of local directories. |
IvyArtifactRepository |
ivy(Closure closure) Adds and configures an Ivy repository. |
IvyArtifactRepository |
ivy(Action<? super IvyArtifactRepository> action) Adds and configures an Ivy repository. |
MavenArtifactRepository |
jcenter(Action<? super MavenArtifactRepository> action) Adds a repository which looks in Bintray's JCenter repository for dependencies. |
MavenArtifactRepository |
jcenter() Adds a repository which looks in Bintray's JCenter repository for dependencies. |
MavenArtifactRepository |
maven(Closure closure) Adds and configures a Maven repository. |
MavenArtifactRepository |
maven(Action<? super MavenArtifactRepository> action) Adds and configures a Maven repository. |
MavenArtifactRepository |
mavenCentral(Map<String, ?> args) Adds a repository which looks in the Maven central repository for dependencies. |
MavenArtifactRepository |
mavenCentral() Adds a repository which looks in the Maven central repository for dependencies. |
MavenArtifactRepository |
mavenLocal() Adds a repository which looks in the local Maven cache for dependencies. |
Adds a resolver that looks into a number of directories for artifacts. The artifacts are expected to be located in the
root of the specified directories. The resolver ignores any group/organization information specified in the
dependency section of your build script. If you only use this kind of resolver you might specify your
dependencies like ":junit:4.4"
instead of "junit:junit:4.4"
.
The following parameter are accepted as keys for the map:
Key | Description of Associated Value |
---|---|
name |
(optional) The name of the repository. The default is a Hash value of the rootdir paths. The name is used in the console output, to point to information related to a particular repository. A name must be unique amongst a repository group. |
dirs |
Specifies a list of rootDirs where to look for dependencies. These are evaluated as per Project.files |
Examples:
repositories { flatDir name: 'libs', dirs: "$projectDir/libs" flatDir dirs: ["$projectDir/libs1", "$projectDir/libs2"] }
args
- The arguments used to configure the repository.Adds an configures a repository which will look for dependencies in a number of local directories.
configureClosure
- The closure to execute to configure the repository.Adds an configures a repository which will look for dependencies in a number of local directories.
action
- The action to execute to configure the repository.Adds and configures an Ivy repository.
closure
- The closure to use to configure the repository.Adds and configures an Ivy repository.
action
- The action to use to configure the repository.Adds a repository which looks in Bintray's JCenter repository for dependencies.
The URL used to access this repository is "http://jcenter.bintray.com/". The behavior of this resolver is otherwise the same as the ones added by maven(org.gradle.api.Action).
Examples:
repositories { jcenter { artifactUrls = ["http://www.mycompany.com/artifacts1", "http://www.mycompany.com/artifacts2"] } jcenter { name = "nonDefaultName" artifactUrls = ["http://www.mycompany.com/artifacts1"] } }
action
- a configuration actionAdds a repository which looks in Bintray's JCenter repository for dependencies.
The URL used to access this repository is "http://jcenter.bintray.com/". The behavior of this resolver is otherwise the same as the ones added by mavenCentral().
Examples:
repositories { jcenter() }
Adds and configures a Maven repository.
closure
- The closure to use to configure the repository.Adds and configures a Maven repository.
action
- The action to use to configure the repository.Adds a repository which looks in the Maven central repository for dependencies. The URL used to access this repository is {
Key | Description of Associated Value |
---|---|
name |
(optional) The name of the repository. The default is {@value org.gradle.api.artifacts.ArtifactRepositoryContainer#DEFAULT_MAVEN_CENTRAL_REPO_NAME} is used as the name. A name must be unique amongst a repository group. |
artifactUrls |
A single jar repository or a collection of jar repositories containing additional artifacts not found in the Maven central repository. But be aware that the POM must exist in Maven central. The provided values are evaluated as per Project.uri. |
Examples:
repositories { mavenCentral artifactUrls: ["http://www.mycompany.com/artifacts1", "http://www.mycompany.com/artifacts2"] mavenCentral name: "nonDefaultName", artifactUrls: ["http://www.mycompany.com/artifacts1"] }
args
- A list of urls of repositories to look for artifacts only.Adds a repository which looks in the Maven central repository for dependencies. The URL used to access this repository is {
Examples:
repositories { mavenCentral() }
Adds a repository which looks in the local Maven cache for dependencies. The name of the repository is {
Examples:
repositories { mavenLocal() }