搜索Gradle插件

版本 1.0(最新版)

1.0

创建于2019年2月28日。

Azure Functions 插件

使用插件DSL

plugins {
  id("lenala.azure.azurefunctions") version "1.0"
}

使用旧版插件应用

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

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

使用插件DSL

plugins {
  id "lenala.azure.azurefunctions" version "1.0"
}

使用旧版插件应用

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

apply plugin: "lenala.azure.azurefunctions"

了解如何将插件应用于子项目