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

src.main.kotlin.com.gabrielfeo.develocity.api.model.MavenBuildOptions.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

/**
 * Maven build options for this build.
 *
 * @param errorsEnabled Indicates whether the build is configured to produce execution error messages. See https://maven.apache.org/ref/current/maven-embedder/cli.html#errors.
 * @param maxNumberOfThreads Maximum number of threads used when executing the build. See https://cwiki.apache.org/confluence/display/MAVEN/Parallel+builds+in+Maven+3.
 * @param nonRecursiveEnabled Indicates whether the build is configured to not recurse into sub-projects. See https://maven.apache.org/ref/current/maven-embedder/cli.html#non-recursive.
 * @param noSnapshotsUpdatesEnabled Indicates whether the build is configured to suppress snapshot updates. See https://maven.apache.org/ref/current/maven-embedder/cli.html#no-snapshot-updates.
 * @param offlineModeEnabled Indicates whether the build is configured to run offline. See https://maven.apache.org/ref/current/maven-embedder/cli.html#offline.
 * @param updateSnapshotsEnabled Indicates whether the build is configured to force a check for missing releases and updated snapshots on remote repositories. See https://maven.apache.org/ref/current/maven-embedder/cli.html#update-snapshots.
 * @param batchModeEnabled Indicates whether the build is configured to run in non-interactive (batch) mode. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#batch-mode.
 * @param debugEnabled Indicates whether the build is configured to produce execution debug output. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#debug.
 * @param failAtEndEnabled Indicates whether the build is configured to only fail at the end. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-at-end.
 * @param failFastEnabled Indicates whether the build is configured to fail at the first error. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-fast.
 * @param failNeverEnabled Indicates whether the build is configured to never fail, regardless of errors produced. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-never.
 * @param laxChecksumsEnabled Indicates whether the build is configured to only warn if checksums don't match. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#lax-checksums.
 * @param rerunGoalsEnabled Indicates whether the build is configured to rerun goals without checking the build cache. `null` if Develocity Maven extension version is < `1.13`. See https://gradle.com/help/maven-extension-rerunning-goals.
 * @param quietEnabled Indicates whether the build is configured to run in quiet mode. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#quiet.
 * @param strictChecksumsEnabled Indicates whether the build is configured to fail if checksums don't match. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#strict-checksums.
 * @param rerunGoals **This property is deprecated, use `rerunGoalsEnabled` instead.** Indicates whether the build is configured to rerun goals without checking the build cache. `null` if Develocity Maven extension version is < `1.13`. See https://gradle.com/help/maven-extension-rerunning-goals. 
 */


data class MavenBuildOptions (

    /* Indicates whether the build is configured to produce execution error messages. See https://maven.apache.org/ref/current/maven-embedder/cli.html#errors. */
    @Json(name = "errorsEnabled")
    val errorsEnabled: kotlin.Boolean,

    /* Maximum number of threads used when executing the build. See https://cwiki.apache.org/confluence/display/MAVEN/Parallel+builds+in+Maven+3. */
    @Json(name = "maxNumberOfThreads")
    val maxNumberOfThreads: kotlin.Int,

    /* Indicates whether the build is configured to not recurse into sub-projects. See https://maven.apache.org/ref/current/maven-embedder/cli.html#non-recursive. */
    @Json(name = "nonRecursiveEnabled")
    val nonRecursiveEnabled: kotlin.Boolean,

    /* Indicates whether the build is configured to suppress snapshot updates. See https://maven.apache.org/ref/current/maven-embedder/cli.html#no-snapshot-updates. */
    @Json(name = "noSnapshotsUpdatesEnabled")
    val noSnapshotsUpdatesEnabled: kotlin.Boolean,

    /* Indicates whether the build is configured to run offline. See https://maven.apache.org/ref/current/maven-embedder/cli.html#offline. */
    @Json(name = "offlineModeEnabled")
    val offlineModeEnabled: kotlin.Boolean,

    /* Indicates whether the build is configured to force a check for missing releases and updated snapshots on remote repositories. See https://maven.apache.org/ref/current/maven-embedder/cli.html#update-snapshots. */
    @Json(name = "updateSnapshotsEnabled")
    val updateSnapshotsEnabled: kotlin.Boolean,

    /* Indicates whether the build is configured to run in non-interactive (batch) mode. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#batch-mode. */
    @Json(name = "batchModeEnabled")
    val batchModeEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to produce execution debug output. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#debug. */
    @Json(name = "debugEnabled")
    val debugEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to only fail at the end. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-at-end. */
    @Json(name = "failAtEndEnabled")
    val failAtEndEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to fail at the first error. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-fast. */
    @Json(name = "failFastEnabled")
    val failFastEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to never fail, regardless of errors produced. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#fail-never. */
    @Json(name = "failNeverEnabled")
    val failNeverEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to only warn if checksums don't match. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#lax-checksums. */
    @Json(name = "laxChecksumsEnabled")
    val laxChecksumsEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to rerun goals without checking the build cache. `null` if Develocity Maven extension version is < `1.13`. See https://gradle.com/help/maven-extension-rerunning-goals. */
    @Json(name = "rerunGoalsEnabled")
    val rerunGoalsEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to run in quiet mode. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#quiet. */
    @Json(name = "quietEnabled")
    val quietEnabled: kotlin.Boolean? = null,

    /* Indicates whether the build is configured to fail if checksums don't match. `null` if capturing is not possible. See https://maven.apache.org/ref/current/maven-embedder/cli.html#strict-checksums. */
    @Json(name = "strictChecksumsEnabled")
    val strictChecksumsEnabled: kotlin.Boolean? = null,

    /* **This property is deprecated, use `rerunGoalsEnabled` instead.** Indicates whether the build is configured to rerun goals without checking the build cache. `null` if Develocity Maven extension version is < `1.13`. See https://gradle.com/help/maven-extension-rerunning-goals.  */
    @Json(name = "rerunGoals")
    @Deprecated(message = "This property is deprecated.")
    val rerunGoals: kotlin.Boolean? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy