Skip to content

Commit ca6c893

Browse files
author
André Behrens
committed
Merge pull request OfficeDev#455 from serious6/codevocSupport
enable codecov.io support
2 parents 0109670 + ae3dc3e commit ca6c893

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,4 @@ before_install:
5252

5353
after_success:
5454
- ./deploy_snapshot.sh
55+
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<versions-maven-plugin.version>2.2</versions-maven-plugin.version>
9595
<maven-jxr-plugin.version>2.5</maven-jxr-plugin.version>
9696
<maven-surefire-report-plugin.version>2.18.1</maven-surefire-report-plugin.version>
97+
<jacoco-maven-plugin.version>0.7.5.201505241946</jacoco-maven-plugin.version>
9798
<!-- Dependencies [COMPILE]: -->
9899
<httpclient.version>4.4.1</httpclient.version>
99100
<httpcore.version>4.4.1</httpcore.version>
@@ -368,6 +369,26 @@
368369
</execution>
369370
</executions>
370371
</plugin>
372+
373+
<plugin>
374+
<groupId>org.jacoco</groupId>
375+
<artifactId>jacoco-maven-plugin</artifactId>
376+
<version>${jacoco-maven-plugin.version}</version>
377+
<executions>
378+
<execution>
379+
<goals>
380+
<goal>prepare-agent</goal>
381+
</goals>
382+
</execution>
383+
<execution>
384+
<id>report</id>
385+
<phase>test</phase>
386+
<goals>
387+
<goal>report</goal>
388+
</goals>
389+
</execution>
390+
</executions>
391+
</plugin>
371392
<!-- Deployment / build plugins END -->
372393
</plugins>
373394
<!-- Used to bump all of the various core plugins up to Maven current.

readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
[![Build Status](https://travis-ci.org/OfficeDev/ews-java-api.svg)](https://travis-ci.org/OfficeDev/ews-java-api) [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/OfficeDev/ews-java-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1+
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/OfficeDev/ews-java-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2+
[![Build Status](https://travis-ci.org/OfficeDev/ews-java-api.svg)](https://travis-ci.org/OfficeDev/ews-java-api) [![codecov.io](https://codecov.io/github/OfficeDev/ews-java-api/coverage.svg?branch=master)](https://codecov.io/github/OfficeDev/ews-java-api?branch=master)
23

34
# EWS JAVA API
45

0 commit comments

Comments
 (0)