|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD |
org.gradle.api.artifacts.repositories.ArtifactRepository org.gradle.api.artifacts.repositories.FlatDirectoryArtifactRepository
public interface FlatDirectoryArtifactRepository extends ArtifactRepository
A repository that looks into a number of directories for artifacts. The artifacts are expected to be located in the root of the specified directories.
The repository ignores any group/organization information specified in the dependency section of your build script. If you only use this kind of
resolver you can specify your dependencies like :junit:4.8.1
instead of junit:junit:4.8.1
.
To resolve a dependency, this resolver looks for one of the following files. It will return the first match it finds:
:junit:junit:4.8.1
, this repository will look for junit-4.8.1.jar
and then junit.jar
.
Method Summary | |
---|---|
void
|
dir(Object dir)
Adds a directory where this repository will look for artifacts. |
void
|
dirs(Object... dirs)
Adds some directories where this repository will look for artifacts. |
Set
|
getDirs()
Returns the directories where this repository will look for artifacts. |
void
|
setDirs(Iterable dirs)
Sets the directories where this repository will look for artifacts. |
Methods inherited from interface ArtifactRepository | |
---|---|
getName, setName |
Method Detail |
---|
public void dir(Object dir)
The provided value are evaluated as per Project.file.
dir
- the directory
public void dirs(Object... dirs)
The provided values are evaluated as per Project.files.
dirs
- the directories.
public Set getDirs()
public void setDirs(Iterable dirs)
The provided values are evaluated as per Project.files.
dirs
- the directories.
Gradle API 1.12