Search Gradle plugins

io.telereso.kmp

Owner: Ahmed na

Include tasks needed while working with Telereso's Kotlin multiplatform annotations also to support react native and flutter

https://kmp.telereso.io/annotations/

Sources: https://github.com/telereso/kmp-annotations

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.telereso.kmp") version "0.4.0-wasm.2"
}

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.telereso.kmp:io.telereso.kmp.gradle.plugin:0.4.0-wasm.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.telereso.kmp")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.telereso.kmp:io.telereso.kmp.gradle.plugin:0.4.0-wasm.2")
      }
    }
    
    apply(plugin = "io.telereso.kmp")
  • Applying plugins to all subprojects .