Search Gradle plugins

Version 0.1.0-alpha02 (latest)

0.1.0-alpha02

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.decathlon.gradle:gradle-gar-authentication:0.1.0-alpha02")
      }
    }
    
    apply(plugin = "com.decathlon.gradle.authenticated-gar-cli")
  • Applying plugins to all subprojects .