Search Gradle plugins

io.github.fluxo-kt.fluxo-kmp-conf

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.8.0 (latest)

Created 22 April 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.8.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.8.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.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.fluxo-kt:fluxo-kmp-conf:0.8.0"
  }
}

apply plugin: "io.github.fluxo-kt.fluxo-kmp-conf"

Learn how to apply plugins to subprojects