lenala.azure.azurefunctions
Owner: Elena Lakhno
Azure Functions Plugin
https://github.com/lenala/azure-gradle-plugins
Sources: https://github.com/lenala/azure-gradle-plugins.git
Version 1.0 (latest)
1.0
Created 28 February 2019.
Azure Functions Plugin
Using the plugins DSL:
plugins {
id("lenala.azure.azurefunctions") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("lenala.azure:azure-functions-gradle-plugin:1.0")
}
}
apply(plugin = "lenala.azure.azurefunctions")
Using the plugins DSL:
plugins {
id "lenala.azure.azurefunctions" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "lenala.azure:azure-functions-gradle-plugin:1.0"
}
}
apply plugin: "lenala.azure.azurefunctions"