Search Gradle plugins

Version 0.8.20181101124222

Created 01 November 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects