File tree 3 files changed +6
-8
lines changed 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,16 @@ groovy:
7
7
jdk :
8
8
- oraclejdk8
9
9
10
+ before_install :
11
+ - pip install --user codecov
12
+
10
13
install : true
11
14
12
- script : ./gradlew clean build coveralls
15
+ script : ./gradlew clean build
13
16
14
17
after_success :
15
18
- .buildscript/deploy_snapshot.sh
19
+ - codecov
16
20
17
21
env :
18
22
global :
Original file line number Diff line number Diff line change 1
1
# gradle-android-junit-jacoco-plugin
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/vanniktech/gradle-android-junit-jacoco-plugin.svg?branch=master )] ( https://travis-ci.org/vanniktech/gradle-android-junit-jacoco-plugin?branch=master )
4
- [ ![ Coveralls Code Coverage ] ( https://img.shields. io/coveralls /vanniktech/gradle-android-junit-jacoco-plugin/master .svg?label=Code%20Coverage )] ( https://coveralls .io/github/vanniktech/gradle-android-junit-jacoco-plugin?branch=master )
4
+ [ ![ Codecov ] ( https://codecov. io/github /vanniktech/gradle-android-junit-jacoco-plugin/coverage .svg?branch=master )] ( https://codecov .io/github/vanniktech/gradle-android-junit-jacoco-plugin?branch=master )
5
5
[ ![ License] ( http://img.shields.io/:license-apache-blue.svg )] ( http://www.apache.org/licenses/LICENSE-2.0.html )
6
6
![ Java 7 required] ( https://img.shields.io/badge/java-7-brightgreen.svg )
7
7
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ buildscript {
7
7
dependencies {
8
8
classpath ' com.gradle.publish:plugin-publish-plugin:0.9.1'
9
9
classpath ' com.github.ben-manes:gradle-versions-plugin:0.13.0'
10
- classpath ' org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.1'
11
10
classpath ' com.vanniktech:gradle-android-junit-jacoco-plugin:0.7.0'
12
11
}
13
12
}
@@ -17,7 +16,6 @@ apply plugin: 'java'
17
16
apply plugin : ' com.github.ben-manes.versions'
18
17
apply plugin : ' com.gradle.plugin-publish'
19
18
apply plugin : ' com.vanniktech.android.junit.jacoco'
20
- apply plugin : ' com.github.kt3k.coveralls'
21
19
22
20
repositories {
23
21
jcenter()
@@ -78,8 +76,4 @@ artifacts {
78
76
archives sourcesJar
79
77
}
80
78
81
- coveralls {
82
- jacocoReportPath = " ${ buildDir} /reports/jacoco/test/jacocoTestReport.xml"
83
- }
84
-
85
79
apply from : file(' gradle/gradle-mvn-push.gradle' )
You can’t perform that action at this time.
0 commit comments