Search Gradle plugins

Version 4.9.2

4.9.2

Created 02 June 2021.

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.9.2"
}

See also:

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