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 fc4a61b commit 5ac20bcCopy full SHA for 5ac20bc
.travis.yml
@@ -11,7 +11,6 @@ env:
11
12
script:
13
- ./gradlew test -d
14
+ - ./gradlew jacocoTestReport
15
- npx codecov
16
-after_success:
17
- - bash <(curl -s https://codecov.io/bash)
build.gradle
@@ -1,6 +1,7 @@
1
import java.util.regex.Matcher
2
3
apply plugin: 'java'
4
+apply plugin: 'jacoco'
5
6
sourceCompatibility = 1.7
7
targetCompatibility = 1.7
@@ -11,6 +12,13 @@ repositories {
mavenCentral()
}
+jacocoTestReport {
+ reports {
+ xml.enabled true
18
+ html.enabled false
19
+ }
20
21
+
22
dependencies {
23
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.14.4'
24
implementation 'com.google.code.gson:gson:2.8.5'
0 commit comments