TriggerBuildArtifactsMavenArtifact

data class TriggerBuildArtifactsMavenArtifact(val artifactId: String? = null, val groupId: String? = null, val path: String? = null, val repository: String? = null, val version: String? = null)

Constructors

Link copied to clipboard
constructor(artifactId: String? = null, groupId: String? = null, path: String? = null, repository: String? = null, version: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val artifactId: String? = null

Maven artifactId value used when uploading the artifact to Artifact Registry.

Link copied to clipboard
val groupId: String? = null

Maven groupId value used when uploading the artifact to Artifact Registry.

Link copied to clipboard
val path: String? = null

Path to an artifact in the build's workspace to be uploaded to Artifact Registry. This can be either an absolute path, e.g. /workspace/my-app/target/my-app-1.0.SNAPSHOT.jar or a relative path from /workspace, e.g. my-app/target/my-app-1.0.SNAPSHOT.jar.

Link copied to clipboard
val repository: String? = null

Artifact Registry repository, in the form "https://$REGION-maven.pkg.dev/$PROJECT/$REPOSITORY" Artifact in the workspace specified by path will be uploaded to Artifact Registry with this location as a prefix.

Link copied to clipboard
val version: String? = null

Maven version value used when uploading the artifact to Artifact Registry.