IvyArtifactRepository

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:

  1. If a URL is specified via setUrl then that URL will be used for upload, combined with the applied layout.
  2. If no URL has been specified but additional patterns have been added via artifactPattern or ivyPattern, then the first defined pattern will be used.

Repositories of this type are created by the ivy group of methods.

Types

Link copied to clipboard
interface MetadataSources
Allows configuring the sources of metadata for a specific repository.

Properties

Link copied to clipboard
val GRADLE_ARTIFACT_PATTERN: String = "[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])"
Link copied to clipboard
val GRADLE_IVY_PATTERN: String = "[organisation]/[module]/[revision]/ivy-[revision].xml"
Link copied to clipboard
val IVY_ARTIFACT_PATTERN: String = "[organisation]/[module]/[revision]/[type]s/[artifact](.[ext])"
Link copied to clipboard
val MAVEN_ARTIFACT_PATTERN: String = "[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])"
Link copied to clipboard
val MAVEN_IVY_PATTERN: String = "[organisation]/[module]/[revision]/ivy-[revision].xml"

Functions

Link copied to clipboard
abstract fun artifactPattern(pattern: String)
Adds an independent pattern that will be used to locate artifact files in this repository.
Link copied to clipboard
Link copied to clipboard
abstract fun content(configureAction: Action<in RepositoryContentDescriptor>)
Link copied to clipboard
abstract fun credentials(action: Action<in PasswordCredentials>)
Link copied to clipboard
inline fun AuthenticationSupported.credentials(credentialsType: KClass<out Credentials>)
inline fun <T : Credentials> AuthenticationSupported.credentials(credentialsType: KClass<T>, action: Action<in T>)

Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.artifacts.repositories.AuthenticationSupported.credentials.

Link copied to clipboard
Link copied to clipboard
abstract fun <T : Credentials?> getCredentials(credentialsType: Class<T>): T
Link copied to clipboard
inline fun <T : Credentials> AuthenticationSupported.getCredentials(credentialsType: KClass<T>): T

Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.artifacts.repositories.AuthenticationSupported.getCredentials.

Link copied to clipboard
Returns the current metadata sources configuration for the repository.
Link copied to clipboard
abstract fun getName(): String
Link copied to clipboard
Returns the meta-data provider used when resolving artifacts from this repository.
Link copied to clipboard
abstract fun getUrl(): URI
The base URL of this repository.
Link copied to clipboard
Link copied to clipboard
abstract fun ivyPattern(pattern: String)
Adds an independent pattern that will be used to locate ivy files in this repository.
Link copied to clipboard
abstract fun layout(layoutName: String)
Specifies how the items of the repository are organized.
Link copied to clipboard
Configures the metadata sources for this repository.
Link copied to clipboard
Specifies how the items of the repository are organized.
Link copied to clipboard
abstract fun setAllowInsecureProtocol(allowInsecureProtocol: Boolean)
Link copied to clipboard
Link copied to clipboard
inline fun MetadataSupplierAware.setComponentVersionsLister(lister: KClass<out ComponentMetadataVersionLister>, configureAction: Action<in ActionConfiguration>)

Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.artifacts.repositories.MetadataSupplierAware.setComponentVersionsLister.

Link copied to clipboard
Sets a custom metadata rule, which is capable of supplying the metadata of a component (status, status scheme, changing flag) whenever a dynamic version is requested.
abstract fun setMetadataSupplier(rule: Class<out ComponentMetadataSupplier>, configureAction: Action<in ActionConfiguration>)
Sets a custom metadata rule, possibly configuring the rule.
Link copied to clipboard
inline fun MetadataSupplierAware.setMetadataSupplier(rule: KClass<out ComponentMetadataSupplier>, configureAction: Action<in ActionConfiguration>)

Kotlin extension function taking kotlin.reflect.KClass for org.gradle.api.artifacts.repositories.MetadataSupplierAware.setMetadataSupplier.

Link copied to clipboard
abstract fun setName(name: String)
Link copied to clipboard
abstract fun setUrl(url: Any)
abstract fun setUrl(url: URI)
Sets the base URL of this repository.