File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# sbt-jacoco - Code Coverage via JaCoCo in sbt
2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/sbt/sbt-jacoco.svg?branch=master )] ( https://travis-ci.org/sbt/sbt-jacoco )
4
- [ ![ SBT 0.13 version] ( https://img.shields.io/badge/sbt_0.13-3.0.0--M5- blue.svg )] ( https://bintray.com/stringbean/sbt-plugins/sbt-jacoco )
5
- [ ![ SBT 1.0 version] ( https://img.shields.io/badge/sbt_1.0-3.0.0--M5- blue.svg )] ( https://bintray.com/stringbean/sbt-plugins/sbt-jacoco )
4
+ [ ![ SBT 0.13 version] ( https://img.shields.io/badge/sbt_0.13-3.0.0-blue.svg )] ( https://bintray.com/stringbean/sbt-plugins/sbt-jacoco )
5
+ [ ![ SBT 1.0 version] ( https://img.shields.io/badge/sbt_1.0-3.0.0-blue.svg )] ( https://bintray.com/stringbean/sbt-plugins/sbt-jacoco )
6
6
7
7
This is an [ sbt] ( http://scala-sbt.org/ ) plugin for code coverage analysis via [ JaCoCo] ( http://www.eclemma.org/jacoco/ ) .
8
8
9
9
Install the plugin by adding the following to ` project/plugins.sbt ` :
10
10
11
11
``` scala
12
- addSbtPlugin(" org.scala-sbt" % " sbt-jacoco" % " 3.0.0-M5 " )
12
+ addSbtPlugin(" org.scala-sbt" % " sbt-jacoco" % " 3.0.0" )
13
13
```
14
14
15
15
And then execute the plugin with ` sbt jacoco ` . This will instrument and run the unit tests and output the coverage
Original file line number Diff line number Diff line change 1
1
name := " sbt-jacoco"
2
2
organization := " org.scala-sbt"
3
3
4
- version := " 3.0.0-M5 "
4
+ version := " 3.0.0"
5
5
6
6
sbtPlugin := true
7
7
crossSbtVersions := Seq (" 0.13.16" , " 1.0.1" )
You can’t perform that action at this time.
0 commit comments