dev.reformator.stacktracedecoroutinator.attribute
                  Owner:
                  
                    
                    Denis Berestinskii
                  
                
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.5.6
Created 04 August 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.5.6"
}
              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.5.6") }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.5.6") } } apply(plugin = "dev.reformator.stacktracedecoroutinator.attribute") - Applying plugins to all subprojects .