Search Gradle plugins

Version 1.1.20200614081240 (latest)

1.1.20200614081240

Created 14 June 2020.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Access to az command line client from Gradle to manage Google Cloud clusters.

Using the plugins DSL:

plugins {
  id("com.github.rmee.gcloud") version "1.1.20200614081240"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.rmee:gcloud:1.1.20200614081240")
  }
}

apply(plugin = "com.github.rmee.gcloud")

Using the plugins DSL:

plugins {
  id "com.github.rmee.gcloud" version "1.1.20200614081240"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rmee:gcloud:1.1.20200614081240"
  }
}

apply plugin: "com.github.rmee.gcloud"

Learn how to apply plugins to subprojects