Search Gradle plugins

Version 1.5.9

1.5.9

Created 25 April 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.5.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle:test-retry-gradle-plugin:1.5.9")
      }
    }
    
    apply(plugin = "org.gradle.test-retry")
  • Applying plugins to all subprojects .