Added acceptance of scans.gradle.com terms of service
authorJeanderson Candido <jeandersonbc@gmail.com>
Mon, 18 Jun 2018 23:37:49 +0000 (20:37 -0300)
committerJeanderson Candido <jeandersonbc@gmail.com>
Mon, 18 Jun 2018 23:37:49 +0000 (20:37 -0300)
build.gradle

index 9193447c3f748620e7bbe5fe9429f9ab02b497cb..555abff2ca320a99b272cda8ad11ca98a027cd59 100644 (file)
@@ -1,4 +1,7 @@
-apply plugin: "java"
+plugins {
+    id "com.gradle.build-scan"
+    id "java"
+}
 
 sourceCompatibility = 1.8
 targetCompatibility = 1.8
@@ -11,6 +14,11 @@ ext.manifestCommonAttrbutes = manifest {
     )
 }
 
+buildScan {
+    termsOfServiceUrl = 'https://gradle.com/terms-of-service'
+    termsOfServiceAgree = 'yes'
+}
+
 repositories {
     mavenCentral()
 }