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/
Version 2.0.2
Created 07 April 2021.
New in this version:
- Compatibility with JDK 16
- Evaluation of test include filters when specified in the build script and on the command line
- Interoperability issue when using Test Distribution agents running on Linux from builds running on Windows
- Reporting of output emitted during startup of forked JVMs on Test Distribution agents
- Faster execution of individual test classes from an IDE or the command line
- Reporting of unrecoverable failures that occurred on Test Distribution agents
Compatible with Gradle Enterprise 2021.1 or later.
- Compatibility with JDK 16
- Evaluation of test include filters when specified in the build script and on the command line
- Interoperability issue when using Test Distribution agents running on Linux from builds running on Windows
- Reporting of output emitted during startup of forked JVMs on Test Distribution agents
- Faster execution of individual test classes from an IDE or the command line
- Reporting of unrecoverable failures that occurred on Test Distribution agents
Compatible with Gradle Enterprise 2021.1 or later.
Using the plugins DSL:
plugins {
id("com.gradle.enterprise.test-distribution") version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradle.enterprise:test-distribution-gradle-plugin:2.0.2")
}
}
apply(plugin = "com.gradle.enterprise.test-distribution")
Using the plugins DSL:
plugins {
id "com.gradle.enterprise.test-distribution" version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.enterprise:test-distribution-gradle-plugin:2.0.2"
}
}
apply plugin: "com.gradle.enterprise.test-distribution"