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
Version 0.2.6-wasm-alpha
0.2.6-wasm-alpha
Created 07 September 2024.
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.2.6-wasm-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.telereso.kmp:gradle-plugin:0.2.6-wasm-alpha")
}
}
apply(plugin = "io.telereso.kmp")
Using the plugins DSL:
plugins {
id "io.telereso.kmp" version "0.2.6-wasm-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.telereso.kmp:gradle-plugin:0.2.6-wasm-alpha"
}
}
apply plugin: "io.telereso.kmp"