When the build is finished,
follow the link to your build scan.
A build scan is a shareable and centralized record of a build that provides insights into what happened and why. By applying the build scan plugin to your project, you can create a build scan in the Gradle Cloud for free.
Explanation about what is transmitted to the Gradle Cloud by using build scans is available here.
If a public cloud isn't for you, you might be interested in Gradle Enterprise.
Get started with build scans with the quickstart sample project,
or follow the 3 simple steps below with your project.
Add this code snippet to the top of the build.gradle file of the root project,
below any buildscript { … } sections if present.
plugins {
id 'com.gradle.build-scan' version '1.5'
}
buildScan {
licenseAgreementUrl = 'https://gradle.com/terms-of-service'
licenseAgree = 'yes'
}
Gradle 2.1 or later required.
Run your build with -Dscan.
gradle build -Dscan
When the build is finished,
follow the link to your build scan.
There's more to build scans.
You can create builds scans for all of your builds via an init script.
You can enable automatic publication (i.e. no need for -Dscan).
You can even extend build scans with custom data, and more.