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)
Created 28 February 2019.
                Azure Functions Plugin
                
            
            
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("lenala.azure.azurefunctions") version "1.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("lenala.azure.azurefunctions:lenala.azure.azurefunctions.gradle.plugin:1.0") }It can then be applied in the precompiled script plugin:plugins { id("lenala.azure.azurefunctions") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("lenala.azure.azurefunctions:lenala.azure.azurefunctions.gradle.plugin:1.0") } } apply(plugin = "lenala.azure.azurefunctions")
- Applying plugins to all subprojects .