Skip to content

Commit adc8127

Browse files
committed
coveralls support added
1 parent 61f02c8 commit adc8127

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ cache:
88
directories:
99
- $HOME/.gradle/caches/
1010
- $HOME/.gradle/wrapper/
11-
script: ./gradlew build --info
12-
11+
after_success:
12+
- ./gradlew jacocoTestReport coveralls
1313

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
plugins {
2+
id 'net.saliman.cobertura' version '2.3.1'
3+
id 'com.github.kt3k.coveralls' version '2.8.1'
4+
}
5+
16
apply plugin: 'java'
27
apply plugin: 'maven'
8+
apply plugin: 'eclipse'
9+
apply plugin: 'idea'
310

411
sourceCompatibility = JavaVersion.VERSION_1_7
512
targetCompatibility = JavaVersion.VERSION_1_7

0 commit comments

Comments
 (0)