Skip to content

Commit 2806519

Browse files
authored
Merge pull request #339 from aalmiray/gradle-build-scan
Configure build-scan plugin
2 parents 4ca2135 + d40f6b9 commit 2806519

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: true
33
#env:
44
# - GRADLE_OPTS="-Xmx768m -Xms256m -Xss1m"
55
script:
6-
- ./gradlew -S -i --max-workers=2 --no-daemon clean check build
6+
- ./gradlew -S -i --max-workers=2 --no-daemon clean check build --scan
77
jdk:
88
- openjdk8
99
os:

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ build:
44
verbosity: detailed
55

66
build_script:
7-
- gradlew.bat assemble --info --no-daemon
7+
- gradlew.bat assemble --info --no-daemon --scan
88

99
test_script:
10-
- gradlew.bat test check gradleTest --info --no-daemon
10+
- gradlew.bat test check gradleTest --info --no-daemon --scan
1111

1212
branches:
1313
only:

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
plugins {
2+
id 'com.gradle.build-scan' version '1.16'
23
id 'org.ysb33r.gradletest' version '2.0-alpha-8' apply false
34
id 'com.jfrog.bintray' version '1.8.4' apply false
45
id 'org.ajoberstar.github-pages' version '1.2.0' apply false
56
}
67

7-
8+
buildScan {
9+
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
10+
termsOfServiceAgree = 'yes'
11+
}
812

913
allprojects {
1014
apply plugin: 'idea'

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
org.gradle.daemon=true
2+
org.gradle.caching=true
23
org.gradle.parallel=false
34
org.gradle.configureondemand=false
45

0 commit comments

Comments
 (0)