Skip to content

Commit 8586810

Browse files
committed
Add a build scan
1 parent fa8b49b commit 8586810

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: "Java 8"
3737
stage: test
3838
jdk: oraclejdk8
39-
script: ./gradlew check install jacocoRootReport
39+
script: ./gradlew check install jacocoRootReport --scan
4040
after_success: ./gradlew coveralls sonarqube
4141

4242
# JDK 11

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id 'com.github.ben-manes.versions' version '0.20.0'
33
id 'com.github.hierynomus.license' version '0.15.0'
44
id 'com.github.kt3k.coveralls' version '2.8.2'
5+
id 'com.gradle.build-scan' version '2.1'
56
id 'net.researchgate.release' version '2.8.0'
67
id 'org.owasp.dependencycheck' version '4.0.2'
78
id 'org.sonarqube' version '2.6.2'
@@ -13,7 +14,7 @@ ext {
1314
/* Dependencies */
1415
marmottaVersion = '3.4.0'
1516
camelVersion = '2.23.0'
16-
camelLdpVersion = '0.1.0'
17+
camelLdpVersion = '0.1.1'
1718
jenaVersion = '3.9.0'
1819
javaxAnnotationsVersion = '1.3.2'
1920
javaxInjectVersion = '2.5.0-b62'
@@ -367,6 +368,11 @@ configure(rootProject) {
367368
jacocoReportPath = "${buildDir}/reports/jacoco/jacocoRootReport/jacocoRootReport.xml"
368369
}
369370

371+
buildScan {
372+
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
373+
termsOfServiceAgree = 'yes'
374+
}
375+
370376
tasks.coveralls {
371377
dependsOn 'jacocoRootReport'
372378
}

0 commit comments

Comments
 (0)