All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.main.kotlin.com.gabrielfeo.develocity.api.model.MavenGradleEnterpriseSettings.kt Maven / Gradle / Ivy

The newest version!
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package com.gabrielfeo.develocity.api.model


import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass

/**
 * **This property is deprecated, use `develocitySettings` instead.** Settings for Develocity. 
 *
 * @param 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.
 * @param 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.
 * @param 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.
 * @param 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.
 * @param 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.
 */

@Deprecated(message = "This schema is deprecated.")

data class MavenGradleEnterpriseSettings (

    /* 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. */
    @Json(name = "backgroundPublicationEnabled")
    val backgroundPublicationEnabled: kotlin.Boolean? = null,

    /* 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. */
    @Json(name = "buildOutputCapturingEnabled")
    val buildOutputCapturingEnabled: kotlin.Boolean? = null,

    /* 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. */
    @Json(name = "goalInputsFileCapturingEnabled")
    val goalInputsFileCapturingEnabled: kotlin.Boolean? = null,

    /* 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. */
    @Json(name = "testOutputCapturingEnabled")
    val testOutputCapturingEnabled: kotlin.Boolean? = null,

    /* 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. */
    @Json(name = "resourceUsageCapturingEnabled")
    val resourceUsageCapturingEnabled: kotlin.Boolean? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy