Gradle Project
data class GradleProject(@Json(name = "name" ) val name: String, @Json(name = "path" ) val path: String, @Json(name = "parent" ) val parent: Int? = null)
A Gradle project.
Parameters
name
The name of the project.
path
The path of the project.
parent
The index of the parent of this Gradle project in the GradleProjects array. null
if this project has no parent (i.e. root project of a build).