Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit d298d8d

Browse files
author
Rodrigo Fernandes
committed
Merge pull request #9 from codacy/fix/docs
Fix docs
2 parents ca1a6f1 + b8df2d9 commit d298d8d

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
# sbt-codacy-coverage
2-
[![Codacy Badge](https://www.codacy.com/project/badge/1146fb14534e427493469ba4b0459430)](https://www.codacy.com)
2+
[![Circle CI](https://circleci.com/gh/codacy/sbt-codacy-coverage/tree/master.svg?style=shield)](https://circleci.com/gh/codacy/sbt-codacy-coverage/tree/master)
3+
[![Codacy Badge](https://www.codacy.com/project/badge/grade/1146fb14534e427493469ba4b0459430)](https://www.codacy.com/app/Codacy/sbt-codacy-coverage)
4+
[![Codacy Badge](https://www.codacy.com/project/badge/coverage/1146fb14534e427493469ba4b0459430)](https://www.codacy.com/app/Codacy/sbt-codacy-coverage)
5+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.codacy/sbt-codacy-coverage/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.codacy/sbt-codacy-coverage)
36

47
sbt plugin for uploading Scala code coverage to Codacy https://www.codacy.com
58

6-
```
7-
sbt-codacy-coverage will only work with:
9+
`sbt-codacy-coverage` will only work with:
810
* sbt 0.13.5 and higher
911
* Java JRE 7 and higher
10-
```
1112

1213
## Setup
1314

14-
Codacy assumes that coverage is previously configured for your project. As an example, we will configure a Scala project with the scoverage sbt plugin.
15+
Codacy assumes that coverage is previously configured for your project. As an example, we will configure a Scala project with the `scoverage` sbt plugin.
1516

16-
To start, add the scoverage and Codacy sbt plugins into your plugins.sbt file:
17+
To start, add the `scoverage` and Codacy sbt plugins into your plugins.sbt file:
1718

1819
```sbt
1920
resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
@@ -23,14 +24,14 @@ addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.1")
2324
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.2.1")
2425
```
2526

26-
Coverage should now be enabled for your project.
27+
Coverage should now be enabled for your project.
2728
To run the tests and create coverage files, type in your terminal:
2829

2930
```sbt
3031
sbt clean coverage test
3132
```
3233

33-
This will create coverage reports for all your tests in your project.
34+
This will create coverage reports for all your tests in your project.
3435
In order to export scoverage report files into cobertura compatible files, just type:
3536

3637
```sbt

circle.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
machine:
2+
java:
3+
version: oraclejdk8

0 commit comments

Comments
 (0)