com.github.rmee.gcloud
Owner: hallowelt
Access to az command line client from Gradle to manage Google Cloud clusters.
https://github.com/rmee/gradle-plugins/tree/master/gcloud
Sources: https://github.com/rmee/gradle-plugins/tree/master/gcloud
Version 0.8.20181027080502
0.8.20181027080502
Created 27 October 2018.
Access to az command line client from Gradle to manage Google Cloud clusters.
Using the plugins DSL:
plugins {
id("com.github.rmee.gcloud") version "0.8.20181027080502"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rmee:gcloud:0.8.20181027080502")
}
}
apply(plugin = "com.github.rmee.gcloud")
Using the plugins DSL:
plugins {
id "com.github.rmee.gcloud" version "0.8.20181027080502"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rmee:gcloud:0.8.20181027080502"
}
}
apply plugin: "com.github.rmee.gcloud"