Search Gradle plugins

Version 5.115.0

Created 12 February 2023.

Configure latest/stable webpack for Kotlin/JS projects

Using the plugins DSL:

plugins {
  id("io.github.turansky.kfc.latest-webpack") version "5.115.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.turansky.kfc.latest-webpack" version "5.115.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects