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 131296b commit 34af5c2Copy full SHA for 34af5c2
.travis.yml
@@ -1,3 +1,5 @@
1
language: java
2
jdk:
3
- - oraclejdk8
+ - oraclejdk8
4
+after_success:
5
+ - ./gradlew cobertura coveralls
build.gradle
@@ -1,6 +1,3 @@
-group 'com.memoizr'
-version '0.1'
-
buildscript {
ext.kotlin_version = '1.0.3'
6
@@ -12,6 +9,15 @@ buildscript {
12
9
}
13
10
14
11
+plugins {
+ id 'net.saliman.cobertura' version '2.3.1'
+ id 'com.github.kt3k.coveralls' version '2.6.3'
15
+}
16
+
17
+cobertura.coverageFormats = ['html', 'xml']
18
+group 'com.memoizr'
19
+version '0.1'
20
21
apply plugin: 'kotlin'
22
23
repositories {
0 commit comments