Skip to content

Commit

Permalink
Merged in SHIBUI-628 (pull request #105)
Browse files Browse the repository at this point in the history
SHIBUI-628

Approved-by: Dmitriy Kopylenko <dkopylenko@unicon.net>
Approved-by: Shibui Jenkins <shibui.jenkins@gmail.com>
  • Loading branch information
Bill Smith authored and Jonathan Johnson committed Jul 10, 2018
2 parents 9578401 + add4dca commit 6645e27
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ plugins {
}

apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -191,3 +192,15 @@ tasks.withType(JavaExec) {
compileJava {
dependsOn generateSources
}

jacoco {
toolVersion = '0.8.1'
}

jacocoTestReport {
reports {
xml.enabled = false
csv.enabled = false
html.destination = file("${buildDir}/jacocoHtml")
}
}

0 comments on commit 6645e27

Please sign in to comment.