io.github.bjoernmayer.artifactregistryGradlePlugin
Owner: Björn Mayer
Automatically handle authentication with Maven repositories hosted on Artifact Registry.
https://github.com/bjoernmayer/artifactregistry-gradle
Sources: https://github.com/bjoernmayer/artifactregistry-gradle
Version 0.5.0 (latest)
0.5.0
Created 08 November 2024.
Automatically handle authentication with Maven repositories hosted on Artifact Registry.
Using the plugins DSL:
plugins {
id("io.github.bjoernmayer.artifactregistryGradlePlugin") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.bjoernmayer:artifactregistry-gradle-plugin:0.5.0")
}
}
apply(plugin = "io.github.bjoernmayer.artifactregistryGradlePlugin")
Using the plugins DSL:
plugins {
id "io.github.bjoernmayer.artifactregistryGradlePlugin" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.bjoernmayer:artifactregistry-gradle-plugin:0.5.0"
}
}
apply plugin: "io.github.bjoernmayer.artifactregistryGradlePlugin"