搜索 Gradle 插件

版本 8.18.0(最新版)

8.18.0

创建于 2024 年 8 月 18 日。

在根项目中提供版本任务

使用 插件 DSL

plugins {
  id("io.github.turansky.kfc.version") version "8.18.0"
}

使用 旧插件应用程序

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

apply(plugin = "io.github.turansky.kfc.version")

使用 插件 DSL

plugins {
  id "io.github.turansky.kfc.version" version "8.18.0"
}

使用 旧插件应用程序

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

apply plugin: "io.github.turansky.kfc.version"

学习如何将插件应用到子项目中