Search Gradle plugins

Version 2.4.8 (latest)

2.4.8

Created 30 November 2024.

Gradle plugin for recovering stack trace in exceptions thrown in Kotlin coroutines

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.reformator.stacktracedecoroutinator") version "2.4.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.reformator.stacktracedecoroutinator:stacktrace-decoroutinator-gradle-plugin:2.4.8")
      }
    }
    
    apply(plugin = "dev.reformator.stacktracedecoroutinator")
  • Applying plugins to all subprojects .