lenala.azure.azurewebapp
Owner: Elena Lakhno
Azure Webapp Plugin
https://github.com/lenala/azure-gradle-plugins
Sources: https://github.com/lenala/azure-gradle-plugins.git
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"