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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "io.telereso.kmp"

Learn how to apply plugins to subprojects