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://telereso.io/

Version 0.0.23 (latest)

Created 13 April 2023.

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

Using the plugins DSL:

plugins {
  id("io.telereso.kmp") version "0.0.23"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.telereso.kmp:gradle-plugin:0.0.23")
  }
}

apply(plugin = "io.telereso.kmp")

Using the plugins DSL:

plugins {
  id "io.telereso.kmp" version "0.0.23"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.telereso.kmp:gradle-plugin:0.0.23"
  }
}

apply plugin: "io.telereso.kmp"

Learn how to apply plugins to subprojects