com.github.turansky.kfc.component
Owner: Victor Turansky
Optimize Kotlin/JS component configuration
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.component") version "2.16.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.16.0")
}
}
apply(plugin = "com.github.turansky.kfc.component")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.component" version "2.16.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:2.16.0"
}
}
apply plugin: "com.github.turansky.kfc.component"