搜索Gradle插件

使用插件DSL

plugins {
  id("io.github.turansky.kfc.dev-server") version "6.2.0"
}

使用传统的插件应用

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

apply(plugin = "io.github.turansky.kfc.dev-server")

使用插件DSL

plugins {
  id "io.github.turansky.kfc.dev-server" version "6.2.0"
}

使用传统的插件应用

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

apply plugin: "io.github.turansky.kfc.dev-server"

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