Search Gradle plugins

Version 1.0.20190725142159

Created 26 July 2019.

Access to az command line client from Gradle to manage Azure clusters.

Using the plugins DSL:

plugins {
  id("com.github.rmee.az") version "1.0.20190725142159"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.rmee.az" version "1.0.20190725142159"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects