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 2.2.1

2.2.1

Created 14 October 2021.

New in this version: - Report events for intermediate elements in the test tree (e.g. nested test classes) - Fix handling of absent input/output file property values - Fix retry behavior for Spock 2 Stepwise test classes - Add option to configure whether failed tests should be retried in the same or a new JVM Compatible with Gradle Enterprise 2021.3 or later.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects