Skip to content

Commit

Permalink
Add coveralls coverage reports
Browse files Browse the repository at this point in the history
Add support for coveralls coverage reports. Also enable unit test runs in Travis CI.

Closes #5
  • Loading branch information
ExcaliburZero committed May 11, 2016
1 parent 1470372 commit 564f335
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ jdk:
- oraclejdk7
- openjdk7
script:
- gradle core:javadoc
- gradle core:javadoc core:test core:jacocoTestReport coveralls
7 changes: 5 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
apply plugin: "java"
apply plugin: "jacoco"
plugins {
id "java"
id "jacoco"
id "com.github.kt3k.coveralls" version "2.5.0"
}

sourceCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
Expand Down

0 comments on commit 564f335

Please sign in to comment.