CommonDependencyRepository

data class CommonDependencyRepository(@Json(name = "url") val url: String? = null, @Json(name = "type") val type: CommonDependencyRepository.Type? = null, @Json(name = "resolutionSource") val resolutionSource: CommonDependencyRepository.ResolutionSource? = null)

The repository where the dependency was resolved from.

Parameters

url

The URL of the repository.

type

The type of the repository.

resolutionSource

A classification of the source this repository uses to resolve dependencies.

Constructors

Link copied to clipboard
constructor(@Json(name = "url") url: String? = null, @Json(name = "type") type: CommonDependencyRepository.Type? = null, @Json(name = "resolutionSource") resolutionSource: CommonDependencyRepository.ResolutionSource? = null)

Types

Link copied to clipboard

A classification of the source this repository uses to resolve dependencies.

Link copied to clipboard
@JsonClass(generateAdapter = false)
enum Type : Enum<CommonDependencyRepository.Type>

The type of the repository.

Properties

Link copied to clipboard
Link copied to clipboard
val url: String?