Search Gradle plugins

com.gradle.enterprise.test-distribution

Owner: Gradle

Gradle Enterprise test distribution takes your existing test suites and distributes them across remote agents to execute them faster.

https://docs.gradle.com/enterprise/test-distribution-gradle-plugin/

Sources: https://github.com/gradle/gradle

Version 1.1.2

Created 28 August 2020.

New in this version: - Start of test execution is now logged on INFO level on agent side - Improved test retry for unrolled Spock tests when using JUnit Vintage Engine 5.7.0+ - Tests failed due to assertion errors are now reported in a way compatible with IDEs that differentiate between test errors and failures when using Gradle 6.6+ - Compatibility with Gradle 6.7 Fixes in this version: - Failures from local test executors are reported correctly - Cycles in exception cause chains are handled properly - Suppressed exceptions in test failures are reported correctly - Output files received after the execution has failed no longer lead to exceptions Compatible with Gradle Enterprise 2020.3 or later.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradle.enterprise.test-distribution") version "1.1.2"
}

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("com.gradle.enterprise.test-distribution:com.gradle.enterprise.test-distribution.gradle.plugin:1.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.gradle.enterprise.test-distribution")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gradle.enterprise.test-distribution:com.gradle.enterprise.test-distribution.gradle.plugin:1.1.2")
      }
    }
    
    apply(plugin = "com.gradle.enterprise.test-distribution")
  • Applying plugins to all subprojects .