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.0.1

1.0.1

Created 11 May 2020.

Fixes in this version: - Java agent JVM arguments without options are now parsed correctly - Java agent JVM arguments with relative path to Java agent are now supported - Test output before/after the execution of a test class is now handled correctly - Race condition when capturing test output from different threads is fixed - Timeout for connecting to forked test VMs is increased to match Gradle's - Add option to suppress capturing custom values in build scans Compatible with Gradle Enterprise 2020.2 or later.

Add this plugin to your build using the plugins DSL:

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

See also:

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