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 29485e2 commit 062a963Copy full SHA for 062a963
.travis.yml
@@ -2,4 +2,5 @@ language: java
2
jdk:
3
- oraclejdk8
4
after_success:
5
- - bash <(curl -s https://codecov.io/bash)
+ - if [ -e ./gradlew ]; then ./gradlew jacocoTestReport;else gradle jacocoTestReport;fi
6
+ - bash <(curl -s https://codecov.io/bash) -t 7a683107-98e4-4c0d-b154-649e9ac9693c
build.gradle
@@ -15,6 +15,7 @@ group 'com.memoizr'
15
version '0.1'
16
17
apply plugin: 'kotlin'
18
+apply plugin: 'jacoco'
19
20
repositories {
21
maven { url "https://dl.bintray.com/kotlin/kotlin-eap-1.1" }
0 commit comments