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