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

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

/**
 * 
 *
 * @param groupId The plugin group ID.
 * @param artifactId The plugin artifact ID.
 * @param version The plugin version.
 * @param executedGoals The list of executed plugin goals. May be empty if none of the plugin goals are executed in this build.
 * @param modules The list of short form coordinates of the modules where the plugin is applied, in the format `groupId:artifactId`.
 * @param name The name of the plugin. May be `null` in cases where this is not defined or captured.
 * @param goalPrefix The prefix defined by the plugin for its goals. Can be `null` if not specified by the plugin.
 * @param requiredMavenVersion The required Maven version for the plugin. Can be `null` if not specified by the plugin.
 */


data class MavenPlugin (

    /* The plugin group ID. */
    @Json(name = "groupId")
    val groupId: kotlin.String,

    /* The plugin artifact ID. */
    @Json(name = "artifactId")
    val artifactId: kotlin.String,

    /* The plugin version. */
    @Json(name = "version")
    val version: kotlin.String,

    /* The list of executed plugin goals. May be empty if none of the plugin goals are executed in this build. */
    @Json(name = "executedGoals")
    val executedGoals: kotlin.collections.List,

    /* The list of short form coordinates of the modules where the plugin is applied, in the format `groupId:artifactId`. */
    @Json(name = "modules")
    val modules: kotlin.collections.List,

    /* The name of the plugin. May be `null` in cases where this is not defined or captured. */
    @Json(name = "name")
    val name: kotlin.String? = null,

    /* The prefix defined by the plugin for its goals. Can be `null` if not specified by the plugin. */
    @Json(name = "goalPrefix")
    val goalPrefix: kotlin.String? = null,

    /* The required Maven version for the plugin. Can be `null` if not specified by the plugin. */
    @Json(name = "requiredMavenVersion")
    val requiredMavenVersion: kotlin.String? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy