Search Gradle plugins

Version 4.81.0

4.81.0

Created 23 January 2022.

Configure Kotlin/JS plugin in root project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.turansky.kfc.root") version "4.81.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.turansky.kfc:kfc-gradle-plugin:4.81.0")
      }
    }
    
    apply(plugin = "com.github.turansky.kfc.root")
  • Applying plugins to all subprojects .