io.github.fluxo-kt.fluxo-kmp-conf
Owner: Artyom Shendrik
Convenience Gradle plugin for reliable configuration of Kotlin & KMP projects. Made by Fluxo. See https://github.com/fluxo-kt/fluxo-kmp-conf for more details.
https://github.com/fluxo-kt/fluxo-kmp-conf
Sources: https://github.com/fluxo-kt/fluxo-kmp-conf/tree/main
Version 0.13.0 (latest)
0.13.0
Created 18 November 2024.
Convenience Gradle plugin for reliable configuration of Kotlin & KMP projects. Made by Fluxo.
Using the plugins DSL:
plugins {
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fluxo-kt:fluxo-kmp-conf:0.13.0")
}
}
apply(plugin = "io.github.fluxo-kt.fluxo-kmp-conf")
Using the plugins DSL:
plugins {
id "io.github.fluxo-kt.fluxo-kmp-conf" version "0.13.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fluxo-kt:fluxo-kmp-conf:0.13.0"
}
}
apply plugin: "io.github.fluxo-kt.fluxo-kmp-conf"