Search Gradle plugins

Gradle plugin for setting attribute for artifacts that are transformed by Stacktrace Decoroutinator

https://github.com/Anamorphosee/stacktrace-decoroutinator

Sources: https://github.com/Anamorphosee/stacktrace-decoroutinator.git

Version 2.6.0 (latest)

Created 08 December 2025.

Gradle plugin for setting attribute for artifacts that are transformed by Stacktrace Decoroutinator

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.reformator.stacktracedecoroutinator.attribute:dev.reformator.stacktracedecoroutinator.attribute.gradle.plugin:2.6.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.reformator.stacktracedecoroutinator.attribute")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.reformator.stacktracedecoroutinator.attribute:dev.reformator.stacktracedecoroutinator.attribute.gradle.plugin:2.6.0")
      }
    }
    
    apply(plugin = "dev.reformator.stacktracedecoroutinator.attribute")
  • Applying plugins to all subprojects .