Search Gradle plugins

dev.buijs.klutter

Klutter is a framework and tool set which uses Flutter to create the frontend and Kotlin Multiplatform for the backend. The connective layer is generated by the Klutter framework. This plugin contains all tasks needed to run a Klutter Project.

https://buijs.dev/klutter/

Sources: https://github.com/buijs-dev/klutter

Version 2022.r6-9.alpha

Created 26 August 2022.

Klutter is a framework and tool set which uses Flutter to create the frontend and Kotlin Multiplatform for the backend. The connective layer is generated by the Klutter framework. This plugin contains all tasks needed to run a Klutter Project.

Using the plugins DSL:

plugins {
  id("dev.buijs.klutter") version "2022.r6-9.alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.buijs.klutter:klutter-gradle:2022.r6-9.alpha")
  }
}

apply(plugin = "dev.buijs.klutter")

Using the plugins DSL:

plugins {
  id "dev.buijs.klutter" version "2022.r6-9.alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.buijs.klutter:klutter-gradle:2022.r6-9.alpha"
  }
}

apply plugin: "dev.buijs.klutter"

Learn how to apply plugins to subprojects