src.main.kotlin.com.gabrielfeo.develocity.api.model.MavenDependencies.kt Maven / Gradle / Ivy
/**
*
* 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.gabrielfeo.develocity.api.model.MavenDependency
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
* Dependencies of a Maven build. While there are many possible types of dependencies, initial support is for library dependencies of the software. Dependency identifiers are based on the package url (purl) [specification](https://github.com/package-url/purl-spec).
*
* @param dependencies List of dependencies of a Maven build.
*/
data class MavenDependencies (
/* List of dependencies of a Maven build. */
@Json(name = "dependencies")
val dependencies: kotlin.collections.List? = null
) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy