搜索 Gradle 插件

版本 4.88.0 (最新版)

4.88.0

创建于 2022 年 2 月 3 日。

Kotlin/JS 的 Webpack 配置

使用 plugins DSL

plugins {
  id("com.github.turansky.kfc.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.webpack")

使用 plugins DSL

plugins {
  id "com.github.turansky.kfc.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.webpack"

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