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.5.1 (latest)
Created 05 September 2023.
Kotlin suspend function transformer
Using the plugins DSL:
plugins {
id("love.forte.plugin.suspend-transform") version "0.5.1"
}
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.5.1")
}
}
apply(plugin = "love.forte.plugin.suspend-transform")
Using the plugins DSL:
plugins {
id "love.forte.plugin.suspend-transform" version "0.5.1"
}
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.5.1"
}
}
apply plugin: "love.forte.plugin.suspend-transform"