MavenDevelocitySettings

data class MavenDevelocitySettings(@Json(name = "backgroundPublicationEnabled") val backgroundPublicationEnabled: Boolean? = null, @Json(name = "buildOutputCapturingEnabled") val buildOutputCapturingEnabled: Boolean? = null, @Json(name = "fileFingerprintCapturingEnabled") val fileFingerprintCapturingEnabled: Boolean? = null, @Json(name = "goalInputsFileCapturingEnabled") val goalInputsFileCapturingEnabled: Boolean? = null, @Json(name = "testOutputCapturingEnabled") val testOutputCapturingEnabled: Boolean? = null, @Json(name = "resourceUsageCapturingEnabled") val resourceUsageCapturingEnabled: Boolean? = null)

Settings for Develocity.

Parameters

backgroundPublicationEnabled

Indicates whether background Build Scan publication is enabled for the build. null if Develocity Maven extension version is <1.6. See https://gradle.com/help/maven-extension-configuring-background-uploading.

buildOutputCapturingEnabled

Indicates whether to capture build logging output for the build. null if Develocity Maven extension version is <1.11. See https://gradle.com/help/maven-extension-capturing-build-and-test-outputs.

fileFingerprintCapturingEnabled

Indicates whether file fingerprint capturing is enabled for the build. null if Develocity Maven extension version is <1.1. See https://docs.gradle.com/enterprise/maven-extension/current/#capturing_goal_input_files.

goalInputsFileCapturingEnabled

Indicates whether to capture goal input file snapshots for the build. null if Develocity Maven extension version is <1.1. See https://gradle.com/help/maven-extension-capturing-goal-input-files. This property is deprecated, use fileFingerprintCapturingEnabled instead.

testOutputCapturingEnabled

Indicates whether to capture test logging output for the build. null if Develocity Maven extension version is <1.11. See https://gradle.com/help/maven-extension-capturing-build-and-test-outputs.

resourceUsageCapturingEnabled

Indicates whether resource usage capturing is enabled for the build. null if Develocity Maven extension version is <1.22. See https://gradle.com/help/maven-extension-capturing-resource-usage.

Constructors

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

Properties