io.github.turansky.kfc.root
Owner: Victor Turansky
Configure Kotlin/JS plugin in root project
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 5.56.0
5.56.0
Created 28 July 2022.
Configure Kotlin/JS plugin in root project
Using the plugins DSL:
plugins {
id("io.github.turansky.kfc.root") version "5.56.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.56.0")
}
}
apply(plugin = "io.github.turansky.kfc.root")
Using the plugins DSL:
plugins {
id "io.github.turansky.kfc.root" version "5.56.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.turansky.kfc:kfc-gradle-plugin:5.56.0"
}
}
apply plugin: "io.github.turansky.kfc.root"