com.github.turansky.kfc.library
Owner: Victor Turansky
Optimize Kotlin library configuration
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Using the plugins DSL:
plugins {
id("com.github.turansky.kfc.library") version "2.20.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.20.0")
}
}
apply(plugin = "com.github.turansky.kfc.library")
Using the plugins DSL:
plugins {
id "com.github.turansky.kfc.library" version "2.20.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.20.0"
}
}
apply plugin: "com.github.turansky.kfc.library"