GradleDevelocitySettings

data class GradleDevelocitySettings(@Json(name = "backgroundPublicationEnabled") val backgroundPublicationEnabled: Boolean? = null, @Json(name = "buildOutputCapturingEnabled") val buildOutputCapturingEnabled: Boolean? = null, @Json(name = "taskInputsFileCapturingEnabled") val taskInputsFileCapturingEnabled: Boolean? = null, @Json(name = "testOutputCapturingEnabled") val testOutputCapturingEnabled: Boolean? = null)

Settings for Develocity.

Parameters

backgroundPublicationEnabled

Indicates whether background Build Scan publication is enabled for the build. null if Gradle version is <5.0 or Develocity Gradle plugin version is <3.4. See https://docs.gradle.com/enterprise/gradle-plugin/#configuring_background_uploading.

buildOutputCapturingEnabled

Indicates whether build logging output capturing is enabled for the build. null if Gradle version is <5.0 or Develocity Gradle plugin version is <3.7. See https://docs.gradle.com/enterprise/gradle-plugin/#capturing_build_and_test_outputs.

taskInputsFileCapturingEnabled

Indicates whether task input file snapshots capturing is enabled for the build. null if Gradle version is <5.0 or Develocity Gradle plugin version is <2.1. See https://docs.gradle.com/enterprise/gradle-plugin/#capturing_task_input_files.

testOutputCapturingEnabled

Indicates whether test logging output capturing is enabled for the build. null if Gradle version is <5.0 or Develocity Gradle plugin version is <3.7. See https://docs.gradle.com/enterprise/gradle-plugin/#capturing_build_and_test_outputs.

Constructors

Link copied to clipboard
constructor(@Json(name = "backgroundPublicationEnabled") backgroundPublicationEnabled: Boolean? = null, @Json(name = "buildOutputCapturingEnabled") buildOutputCapturingEnabled: Boolean? = null, @Json(name = "taskInputsFileCapturingEnabled") taskInputsFileCapturingEnabled: Boolean? = null, @Json(name = "testOutputCapturingEnabled") testOutputCapturingEnabled: Boolean? = null)

Properties