From 4d306e2d85c35e92946382f3a1cec0f304f53b0a Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 21 Aug 2017 14:29:49 +0200 Subject: [PATCH] Use Gradle build scans This commit configures Gradle build scans for the Spring Framework build. Scans aren't performed for every build but can be enabled with the following: ``` ./gradlew build --scan ``` Issue: SPR-15885 --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 05b8b20fb3..ed17eaef73 100644 --- a/build.gradle +++ b/build.gradle @@ -15,9 +15,15 @@ buildscript { } plugins { + id "com.gradle.build-scan" version "1.8" id "org.sonarqube" version "2.5" } +buildScan { + licenseAgreementUrl = 'https://gradle.com/terms-of-service' + licenseAgree = 'yes' +} + ext { linkHomepage = 'https://projects.spring.io/spring-framework' linkCi = 'https://build.spring.io/browse/SPR'