Gradle Build Failure
data class GradleBuildFailure(@Json(name = "header" ) val header: String, @Json(name = "message" ) val message: String, @Json(name = "relevantLog" ) val relevantLog: String? = null, @Json(name = "location" ) val location: String? = null, @Json(name = "taskPath" ) val taskPath: String? = null, @Json(name = "stacktrace" ) val stacktrace: String? = null)
Parameters
header
Failure header.
message
Failure message.
relevant Log
Relevant console log. null if no relevant console log has been found.
location
Failure location, which can be a build script or source file. null when the failure is not location aware.
task Path
The task path associated with this failure. null if no task is associated with the failure.
stacktrace
The stacktrace of this failure. null if there is no stacktrace available.
Constructors
Link copied to clipboard
constructor(@Json(name = "header" ) header: String, @Json(name = "message" ) message: String, @Json(name = "relevantLog" ) relevantLog: String? = null, @Json(name = "location" ) location: String? = null, @Json(name = "taskPath" ) taskPath: String? = null, @Json(name = "stacktrace" ) stacktrace: String? = null)