搜索Gradle插件

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

版本 0.12.0 (最新版)

0.12.0

创建于 2024年6月29日。

由Fluxo提供的方便的Gradle插件,用于可靠配置Kotlin和KMP项目。

使用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"

了解如何将插件应用于子项目