io.github.turansky.kfc.library
Owner: Victor Turansky
Optimize Kotlin library configuration
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 11.9.0 (latest)
11.9.0
Created 05 October 2024.
Optimize Kotlin library configuration
Using the plugins DSL:
plugins {
id("io.github.turansky.kfc.library") version "11.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.turansky.kfc:kfc-gradle-plugin:11.9.0")
}
}
apply(plugin = "io.github.turansky.kfc.library")
Using the plugins DSL:
plugins {
id "io.github.turansky.kfc.library" version "11.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.turansky.kfc:kfc-gradle-plugin:11.9.0"
}
}
apply plugin: "io.github.turansky.kfc.library"