io.github.fluxo-kt.fluxo-kmp-conf
所有者: Artyom Shendrik
由Fluxo提供的方便的Gradle插件,用于可靠配置Kotlin和KMP项目。详见https://github.com/fluxo-kt/fluxo-kmp-conf。
https://github.com/fluxo-kt/fluxo-kmp-conf
资源:https://github.com/fluxo-kt/fluxo-kmp-conf/tree/main
使用plugins DSL
plugins {
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.12.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.fluxo-kt:fluxo-kmp-conf:0.12.0")
}
}
apply(plugin = "io.github.fluxo-kt.fluxo-kmp-conf")
使用plugins DSL
plugins {
id "io.github.fluxo-kt.fluxo-kmp-conf" version "0.12.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.fluxo-kt:fluxo-kmp-conf:0.12.0"
}
}
apply plugin: "io.github.fluxo-kt.fluxo-kmp-conf"