Search Gradle plugins

Version 0.8.20181027075058

Created 27 October 2018.

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 "0.8.20181027075058"
}

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.github.rmee.gcloud:com.github.rmee.gcloud.gradle.plugin:0.8.20181027075058")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.rmee.gcloud")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.rmee.gcloud:com.github.rmee.gcloud.gradle.plugin:0.8.20181027075058")
      }
    }
    
    apply(plugin = "com.github.rmee.gcloud")
  • Applying plugins to all subprojects .