io.github.turansky.kfc.multiplatform
Owner: Victor Turansky
Optimize Kotlin multiplatform library configuration
https://github.com/turansky/kfc-plugins
Sources: https://github.com/turansky/kfc-plugins
Version 5.130.0 (latest)
5.130.0
Created 17 February 2023.
Optimize Kotlin multiplatform library configuration
Using the plugins DSL:
plugins {
id("io.github.turansky.kfc.multiplatform") version "5.130.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.130.0")
}
}
apply(plugin = "io.github.turansky.kfc.multiplatform")
Using the plugins DSL:
plugins {
id "io.github.turansky.kfc.multiplatform" version "5.130.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.turansky.kfc:kfc-gradle-plugin:5.130.0"
}
}
apply plugin: "io.github.turansky.kfc.multiplatform"