Search Gradle plugins

Version 0.1.0-alpha01

0.1.0-alpha01

Created 23 August 2024.

Gradle plugin to connect to a private Google Artifacts Registry using gcloud CLI

Using the plugins DSL:

plugins {
  id("com.decathlon.gradle.authenticated-gar-cli") version "0.1.0-alpha01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.decathlon.gradle:gradle-gar-authentication:0.1.0-alpha01")
  }
}

apply(plugin = "com.decathlon.gradle.authenticated-gar-cli")

Using the plugins DSL:

plugins {
  id "com.decathlon.gradle.authenticated-gar-cli" version "0.1.0-alpha01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.decathlon.gradle:gradle-gar-authentication:0.1.0-alpha01"
  }
}

apply plugin: "com.decathlon.gradle.authenticated-gar-cli"

Learn how to apply plugins to subprojects