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
.