Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact

import type { ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact } from "https://googleapis.deno.dev/v1/containeranalysis:v1.ts";

A Maven artifact to upload to Artifact Registry upon successful completion of all build steps.

interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsMavenArtifact {
artifactId?: string;
groupId?: string;
path?: string;
repository?: string;
version?: string;
}

§Properties

§
artifactId?: string
[src]

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

§
groupId?: string
[src]

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

§
path?: string
[src]

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.

§
repository?: string
[src]

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.

§
version?: string
[src]

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