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

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gradle.enterprise:test-distribution-gradle-plugin:1.0.1")
  }
}

apply(plugin = "com.gradle.enterprise.test-distribution")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.enterprise:test-distribution-gradle-plugin:1.0.1"
  }
}

apply plugin: "com.gradle.enterprise.test-distribution"

Learn how to apply plugins to subprojects