Skip to content

Commit

Permalink
Try out JaCoCo - seems more recently maintained than cobertura
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Apr 21, 2020
1 parent 00d5aa6 commit 16bcb6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ jdk:
# No need to run tasks for dependencies
install: skip

after_success: ./gradlew cobertura coveralls
after_success: ./gradlew jacocoTestReport coveralls
9 changes: 8 additions & 1 deletion thymeleaf-layout-dialect/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
id 'groovy'
id 'codenarc'
id 'maven'
id 'net.saliman.cobertura' version '3.0.0'
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.2'
}
apply from: 'https://raw.githubusercontent.com/ultraq/gradle-support/2.1.0/gradle-support.gradle'
Expand Down Expand Up @@ -66,3 +66,10 @@ dependencies {
groovydoc {
link('http://www.thymeleaf.org/apidocs/thymeleaf/3.0.0.RELEASE/', 'org.thymeleaf.')
}

jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}

0 comments on commit 16bcb6d

Please sign in to comment.