Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Add Codecov Coverage #20

Merged
merged 1 commit into from Apr 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Expand Up @@ -7,6 +7,9 @@ groovy:
jdk:
- oraclejdk8

before_install:
- pip install --user codecov

install: true

script: ./gradlew clean build
Expand All @@ -23,6 +26,9 @@ branches:
except:
- gh-pages

after_success:
- codecov

notifications:
email: false

Expand Down
1 change: 1 addition & 0 deletions README.md
@@ -1,6 +1,7 @@
# gradle-android-javadoc-plugin

[![Build Status](https://travis-ci.org/vanniktech/gradle-android-javadoc-plugin.svg?branch=master)](https://travis-ci.org/vanniktech/gradle-android-javadoc-plugin?branch=master)
[![Codecov](https://codecov.io/github/vanniktech/gradle-android-javadoc-plugin/coverage.svg?branch=master)](https://codecov.io/github/vanniktech/gradle-android-javadoc-plugin?branch=master)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
![Java 8 required](https://img.shields.io/badge/java-8-brightgreen.svg)

Expand Down
3 changes: 2 additions & 1 deletion build.gradle
@@ -1,20 +1,21 @@
buildscript {
repositories {
jcenter()

maven { url "https://plugins.gradle.org/m2/" }
}

dependencies {
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.4.0'
}
}

apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.gradle.plugin-publish'
apply plugin: 'com.vanniktech.android.junit.jacoco'

repositories {
jcenter()
Expand Down