dev.reformator.stacktracedecoroutinator
所有者: Denis Berestinskii
Gradle插件,用于恢复在Kotlin协程中抛出异常的堆栈跟踪
https://github.com/Anamorphosee/stacktrace-decoroutinator
源代码:https://github.com/Anamorphosee/stacktrace-decoroutinator.git
版本 2.4.1(最新版)
2.4.1
创建于 2024年8月5日。
Gradle插件,用于恢复在Kotlin协程中抛出异常的堆栈跟踪
使用plugins DSL
plugins {
id("dev.reformator.stacktracedecoroutinator") version "2.4.1"
}
使用 legacy plugin application
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-gradle-plugin:2.4.1")
}
}
apply(plugin = "dev.reformator.stacktracedecoroutinator")
使用plugins DSL
plugins {
id "dev.reformator.stacktracedecoroutinator" version "2.4.1"
}
使用 legacy plugin application
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-gradle-plugin:2.4.1"
}
}
apply plugin: "dev.reformator.stacktracedecoroutinator"