com.decathlon.gradle.authenticated-gar-cli
Owner: decathlon oss
Gradle plugin to connect to a private Google Artifacts Registry using gcloud CLI
https://github.com/Decathlon/gradle-gar-authentication
Sources: https://github.com/Decathlon/gradle-gar-authentication.git
Version 0.1.0-alpha02 (latest)
Created 08 October 2024.
Gradle plugin to connect to a private Google Artifacts Registry using gcloud CLI
Add this plugin to your build using the plugins DSL:
plugins {
id("com.decathlon.gradle.authenticated-gar-cli") version "0.1.0-alpha02"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.decathlon.gradle.authenticated-gar-cli:com.decathlon.gradle.authenticated-gar-cli.gradle.plugin:0.1.0-alpha02") }
It can then be applied in the precompiled script plugin:plugins { id("com.decathlon.gradle.authenticated-gar-cli") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.decathlon.gradle.authenticated-gar-cli:com.decathlon.gradle.authenticated-gar-cli.gradle.plugin:0.1.0-alpha02") } } apply(plugin = "com.decathlon.gradle.authenticated-gar-cli")
- Applying plugins to all subprojects .