Search Gradle plugins

Version 0.0.0-SNAPSHOT

Created 15 February 2020.

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

Using the plugins DSL:

plugins {
  id("com.github.rmee.az") version "0.0.0-SNAPSHOT"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.rmee.az" version "0.0.0-SNAPSHOT"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects