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