GradlePlugin

data class GradlePlugin(@Json(name = "className") val className: String, @Json(name = "projects") val projects: List<String>, @Json(name = "id") val id: String? = null, @Json(name = "version") val version: String? = null)

Parameters

className

The fully qualified class name of the plugin.

projects

The paths of the projects where the plugin is applied. Will always be an array of size 1 for a single project build.

id

The plugin ID. May be null.

version

The plugin version. May be null.

Constructors

Link copied to clipboard
constructor(@Json(name = "className") className: String, @Json(name = "projects") projects: List<String>, @Json(name = "id") id: String? = null, @Json(name = "version") version: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val id: String? = null
Link copied to clipboard
Link copied to clipboard
val version: String? = null