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.7.0-alpha2
Created 22 February 2024.
Convenience Gradle plugin for reliable configuration of Kotlin & KMP projects. Made by Fluxo.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.7.0-alpha2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.fluxo-kt.fluxo-kmp-conf:io.github.fluxo-kt.fluxo-kmp-conf.gradle.plugin:0.7.0-alpha2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.fluxo-kt.fluxo-kmp-conf") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.fluxo-kt.fluxo-kmp-conf:io.github.fluxo-kt.fluxo-kmp-conf.gradle.plugin:0.7.0-alpha2") } } apply(plugin = "io.github.fluxo-kt.fluxo-kmp-conf")
- Applying plugins to all subprojects .