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
Version 0.2.3
0.2.3
Created 01 March 2020.
Optimize Kotlin/JS component configuration
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.component") version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.turansky.kfc:gradle-plugin:0.2.3")
}
}
apply(plugin = "com.github.turansky.kfc.component")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.component" version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.turansky.kfc:gradle-plugin:0.2.3"
}
}
apply plugin: "com.github.turansky.kfc.component"