Search Gradle plugins

Version 0.0.4

0.0.4

Created 12 February 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.0.4"
}

See also:

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