dev.reformator.stacktracedecoroutinator
Owner: Denis Berestinskii
Gradle plugin for recovering stack trace in exceptions thrown in Kotlin coroutines
https://github.com/Anamorphosee/stacktrace-decoroutinator
Sources: https://github.com/Anamorphosee/stacktrace-decoroutinator.git
Version 2.4.6 (latest)
2.4.6
Created 25 October 2024.
Gradle plugin for recovering stack trace in exceptions thrown in Kotlin coroutines
Using the plugins DSL:
plugins {
id("dev.reformator.stacktracedecoroutinator") version "2.4.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-gradle-plugin:2.4.6")
}
}
apply(plugin = "dev.reformator.stacktracedecoroutinator")
Using the plugins DSL:
plugins {
id "dev.reformator.stacktracedecoroutinator" version "2.4.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-gradle-plugin:2.4.6"
}
}
apply plugin: "dev.reformator.stacktracedecoroutinator"