org.gradle.test-retry
                  Owner:
                  
                    
                    Gradle
                  
                
Mitigate flaky tests by retrying tests when they fail
https://github.com/gradle/test-retry-gradle-plugin
Sources: https://github.com/gradle/test-retry-gradle-plugin.git
Version 1.6.0
Created 11 September 2024.
                Mitigate flaky tests by retrying tests when they fail
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.gradle.test-retry") version "1.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("org.gradle.test-retry:org.gradle.test-retry.gradle.plugin:1.6.0") }It can then be applied in the precompiled script plugin:plugins { id("org.gradle.test-retry") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.test-retry:org.gradle.test-retry.gradle.plugin:1.6.0") } } apply(plugin = "org.gradle.test-retry") - Applying plugins to all subprojects .