GradleDeprecationEntry

data class GradleDeprecationEntry(@Json(name = "summary") val summary: String, @Json(name = "removalDetails") val removalDetails: String, @Json(name = "usages") val usages: List<GradleDeprecationUsage>, @Json(name = "advice") val advice: String? = null, @Json(name = "documentationUrl") val documentationUrl: String? = null)

Parameters

summary

The description of the deprecation.

removalDetails

The details about when the deprecated feature will be removed from Gradle.

usages

List of usages of this deprecation.

advice

The advice on how to avoid using the deprecated feature. null when no advice is available.

documentationUrl

The external url pointing to some documentation about the deprecation. null for older Gradle/plugin combination or certain deprecation notices.

Constructors

Link copied to clipboard
constructor(@Json(name = "summary") summary: String, @Json(name = "removalDetails") removalDetails: String, @Json(name = "usages") usages: List<GradleDeprecationUsage>, @Json(name = "advice") advice: String? = null, @Json(name = "documentationUrl") documentationUrl: String? = null)

Properties

Link copied to clipboard
val advice: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard