搜索Gradle插件

使用 插件 DSL

plugins {
  id("com.github.turansky.kfc.yfiles") version "2.15.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.15.0")
  }
}

apply(plugin = "com.github.turansky.kfc.yfiles")

使用 插件 DSL

plugins {
  id "com.github.turansky.kfc.yfiles" version "2.15.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.15.0"
  }
}

apply plugin: "com.github.turansky.kfc.yfiles"

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