Search Gradle plugins

com.gradle.build-scan

Owner: Gradle

A build scan is a shareable and centralized record of a build that provides insights into what happened and why.

https://scans.gradle.com/plugin/

Sources: https://github.com/gradle/gradle

Version 3.13.4

3.13.4

Created 19 June 2023.

In this version: - [FIX] Test Distribution/Predictive Test Selection: Test Discovery results with failures are incorrectly cached - [FIX] Predictive Test Selection/Test Retry: Confusing failure message when tests could not be retried - [FIX] Test Distribution: Response timeout too short when under heavy load Compatible with scans.gradle.com and Gradle Enterprise 2023.1 or later.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradle.build-scan") version "3.13.4"
}

See also:

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