Search Gradle plugins

Version 1.0.1 (latest)

Created 31 January 2020.

Azure Webapp Plugin

Using the plugins DSL:

plugins {
  id("lenala.azure.azurewebapp") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("lenala.azure:azure-webapp-gradle-plugin:1.0.1")
  }
}

apply(plugin = "lenala.azure.azurewebapp")

Using the plugins DSL:

plugins {
  id "lenala.azure.azurewebapp" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "lenala.azure:azure-webapp-gradle-plugin:1.0.1"
  }
}

apply plugin: "lenala.azure.azurewebapp"

Learn how to apply plugins to subprojects