Skip to content

Commit 4693953

Browse files
authored
Revert "Remove codecov and use coveralls" (#84)
* Revert "Fix Jacoco generation for Java. (#82)" This reverts commit 3e21439. * Revert "remove codecov and use coveralls (#73)" This reverts commit 5ef7542.
1 parent 3e21439 commit 4693953

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ groovy:
77
jdk:
88
- oraclejdk8
99

10+
before_install:
11+
- pip install --user codecov
12+
1013
install: true
1114

12-
script: ./gradlew clean build coveralls
15+
script: ./gradlew clean build
1316

1417
after_success:
1518
- .buildscript/deploy_snapshot.sh
19+
- codecov
1620

1721
env:
1822
global:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# gradle-android-junit-jacoco-plugin
22

33
[![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)
55
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
66
![Java 7 required](https://img.shields.io/badge/java-7-brightgreen.svg)
77

build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ buildscript {
77
dependencies {
88
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.1'
99
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
10-
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.1'
1110
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.7.0'
1211
}
1312
}
@@ -17,7 +16,6 @@ apply plugin: 'java'
1716
apply plugin: 'com.github.ben-manes.versions'
1817
apply plugin: 'com.gradle.plugin-publish'
1918
apply plugin: 'com.vanniktech.android.junit.jacoco'
20-
apply plugin: 'com.github.kt3k.coveralls'
2119

2220
repositories {
2321
jcenter()
@@ -78,8 +76,4 @@ artifacts {
7876
archives sourcesJar
7977
}
8078

81-
coveralls {
82-
jacocoReportPath = "${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
83-
}
84-
8579
apply from: file('gradle/gradle-mvn-push.gradle')

0 commit comments

Comments
 (0)