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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.rmee:gcloud:1.1.20200614081240")
      }
    }
    
    apply(plugin = "com.github.rmee.gcloud")
  • Applying plugins to all subprojects .