We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f02c8 commit adc8127Copy full SHA for adc8127
.travis.yml
@@ -8,6 +8,6 @@ cache:
8
directories:
9
- $HOME/.gradle/caches/
10
- $HOME/.gradle/wrapper/
11
-script: ./gradlew build --info
12
-
+after_success:
+- ./gradlew jacocoTestReport coveralls
13
build.gradle
@@ -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
+
6
apply plugin: 'java'
7
apply plugin: 'maven'
+apply plugin: 'eclipse'
+apply plugin: 'idea'
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
0 commit comments