BuildFailures

data class BuildFailures(@Json(name = "buildToolType") val buildToolType: String, @Json(name = "gradle") val gradle: GradleFailures? = null, @Json(name = "maven") val maven: MavenFailures? = null, @Json(name = "npm") val npm: NpmFailures? = null)

The unified failures response for a build, containing build tool-specific failure information. Each build tool (gradle, maven, npm) has its own nested object with failures if applicable for that build.

Parameters

buildToolType

The build tool type of the build.

gradle
maven
npm

Constructors

Link copied to clipboard
constructor(@Json(name = "buildToolType") buildToolType: String, @Json(name = "gradle") gradle: GradleFailures? = null, @Json(name = "maven") maven: MavenFailures? = null, @Json(name = "npm") npm: NpmFailures? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard