love.forte.plugin.suspend-transform
Owner: ForteScarlet
Kotlin suspend function transformer
https://github.com/ForteScarlet/kotlin-suspend-transform-compiler-plugin
Sources: https://github.com/ForteScarlet/kotlin-suspend-transform-compiler-plugin.git
Version 0.6.0-beta3
0.6.0-beta3
Created 23 December 2023.
Generate platform-compatible functions for Kotlin suspend functions
Using the plugins DSL:
plugins {
id("love.forte.plugin.suspend-transform") version "0.6.0-beta3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("love.forte.plugin.suspend-transform:suspend-transform-plugin-gradle:0.6.0-beta3")
}
}
apply(plugin = "love.forte.plugin.suspend-transform")
Using the plugins DSL:
plugins {
id "love.forte.plugin.suspend-transform" version "0.6.0-beta3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "love.forte.plugin.suspend-transform:suspend-transform-plugin-gradle:0.6.0-beta3"
}
}
apply plugin: "love.forte.plugin.suspend-transform"