Search Gradle plugins

Version 4.88.0 (latest)

Created 03 February 2022.

Configure latest/stable webpack for Kotlin/JS projects

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects