Search Gradle plugins

Version 0.8.2

0.8.2

Created 08 April 2020.

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 "0.8.2"
}

See also:

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