搜索Gradle插件

版本 4.88.0 (最新)

4.88.0

创建于2022年2月3日。

为Kotlin/JS项目配置最新/稳定版本的webpack

使用插件的DSL

plugins {
  id("com.github.turansky.kfc.latest-webpack") version "4.88.0"
}

使用旧版插件应用

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

apply(plugin = "com.github.turansky.kfc.latest-webpack")

使用插件的DSL

plugins {
  id "com.github.turansky.kfc.latest-webpack" version "4.88.0"
}

使用旧版插件应用

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

apply plugin: "com.github.turansky.kfc.latest-webpack"

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