com.google.cloud.artifactregistry.gradle-plugin
Owner: Artifact Registry Team
A Gradle plugin used to connect to Artifact Registry Maven repositories.
https://github.com/GoogleCloudPlatform/artifact-registry-maven-tools
Sources: https://github.com/GoogleCloudPlatform/artifact-registry-maven-tools
Version 2.2.3 (latest)
2.2.3
Created 03 September 2024.
A Gradle plugin used to connect to Artifact Registry Maven repositories.
Using the plugins DSL:
plugins {
id("com.google.cloud.artifactregistry.gradle-plugin") version "2.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.google.cloud.artifactregistry:artifactregistry-gradle-plugin:2.2.3")
}
}
apply(plugin = "com.google.cloud.artifactregistry.gradle-plugin")
Using the plugins DSL:
plugins {
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.google.cloud.artifactregistry:artifactregistry-gradle-plugin:2.2.3"
}
}
apply plugin: "com.google.cloud.artifactregistry.gradle-plugin"