From: Jeanderson Candido Date: Mon, 18 Jun 2018 23:37:49 +0000 (-0300) Subject: Added acceptance of scans.gradle.com terms of service X-Git-Url: http://plrg.eecs.uci.edu/git/?p=jpf-core.git;a=commitdiff_plain;h=c5696ce03cc75f336df4da90e2624f8e0b87ef25 Added acceptance of scans.gradle.com terms of service --- diff --git a/build.gradle b/build.gradle index 9193447..555abff 100644 --- a/build.gradle +++ b/build.gradle @@ -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() }