An artifact repository which uses an Ivy format to store artifacts and meta-data.
When used to resolve metadata and artifact files, all available patterns will be searched.
When used to upload metadata and artifact files, only a single, primary pattern will be used:
Modifiers | Name | Description |
---|---|---|
String |
GRADLE_ARTIFACT_PATTERN |
|
String |
GRADLE_IVY_PATTERN |
|
String |
IVY_ARTIFACT_PATTERN |
|
String |
MAVEN_ARTIFACT_PATTERN |
|
String |
MAVEN_IVY_PATTERN |
Type | Name and description |
---|---|
void |
artifactPattern(String pattern) Adds an independent pattern that will be used to locate artifact files in this repository. |
IvyArtifactRepositoryMetaDataProvider |
getResolve() Returns the meta-data provider used when resolving artifacts from this repository. |
URI |
getUrl() The base URL of this repository. |
void |
ivyPattern(String pattern) Adds an independent pattern that will be used to locate ivy files in this repository. |
void |
layout(String layoutName) Specifies the layout to use with this repository, based on the root url. |
void |
layout(String layoutName, Closure config) Specifies how the items of the repository are organized. |
void |
setUrl(Object url) Sets the base URL of this repository. |
Methods inherited from class | Name |
---|---|
interface ArtifactRepository |
getName, setName |
interface AuthenticationSupported |
credentials, getCredentials |
Adds an independent pattern that will be used to locate artifact files in this repository. This pattern will be used to locate ivy files as well, unless a specific ivy pattern is supplied via ivyPattern(String). If this pattern is not a fully-qualified URL, it will be interpreted as a file relative to the project directory. It is not interpreted relative the the URL specified in setUrl(Object). Patterns added in this way will be in addition to any layout-based patterns added via setUrl.
pattern
- The artifact pattern.Returns the meta-data provider used when resolving artifacts from this repository. The provider is responsible for locating and interpreting the meta-data for the modules and artifacts contained in this repository. Using this provider, you can fine tune how this resolution happens.
The base URL of this repository.
Adds an independent pattern that will be used to locate ivy files in this repository. If this pattern is not a fully-qualified URL, it will be interpreted as a file relative to the project directory. It is not interpreted relative the the URL specified in setUrl(Object). Patterns added in this way will be in addition to any layout-based patterns added via setUrl.
pattern
- The ivy pattern.Specifies the layout to use with this repository, based on the root url. See layout(String, Closure).
layoutName
- The name of the layout to use.Specifies how the items of the repository are organized.
The layout is configured with the supplied closure.
Recognised values are as follows:
A Repository Layout that applies the following patterns:
$baseUri/{- value:
- #GRADLE_ARTIFACT_PATTERN}
$baseUri/{@value #GRADLE_IVY_PATTERN}
A Repository Layout that applies the following patterns:
$baseUri/{@value #MAVEN_ARTIFACT_PATTERN}
$baseUri/{@value #MAVEN_IVY_PATTERN}
Following the Maven convention, the 'organisation' value is further processed by replacing '.' with '/'.
A Repository Layout that applies the following patterns:
$baseUri/{@value #IVY_ARTIFACT_PATTERN}
$baseUri/{@value #IVY_ARTIFACT_PATTERN}
Note: this pattern is currently incubating.
A repository layout that allows custom patterns to be defined. eg:
repositories { ivy { layout 'pattern' , { artifact '[module]/[revision]/[artifact](.[ext])' ivy '[module]/[revision]/ivy.xml' } } }
layoutName
- The name of the layout to use.config
- The closure used to configure the layout.Sets the base URL of this repository. The provided value is evaluated as per Project.uri. This means, for example, you can pass in a File object or a relative path which is evaluated relative to the project directory. File are resolved based on the supplied URL and the configured layout(String, Closure) for this repository.
url
- The base URL.