Includes information about Test processes in the Build Scans. The plugin is compatible with configuration cache.
Apply the plugin in the main build.gradle(.kts)
configuration file:
Using the plugins DSL:
plugins {
id("io.github.cdsap.testprocess") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath("io.github.cdsap:testprocess:0.1.4")
}
}
apply(plugin = "io.github.cdsap.testprocess")
Using the plugins DSL:
plugins {
id "io.github.cdsap.testprocess" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath "io.github.cdsap:testprocess:0.1.4"
}
}
apply plugin: "io.github.cdsap.testprocess"
If you are using Gradle Enterprise, the information:
- Total number of processes created
- Processes by task
- Information about the process
- Gradle 7.5
- Gradle Enterprise
- com.gradle.enterprise:com.gradle.enterprise.gradle.plugin