Skip to content

Commit

Permalink
Downgrade Coveralls plugin version
Browse files Browse the repository at this point in the history
Currently the Travis job fails (https://travis-ci.org/alexandru/shade/jobs/97903369#L505)
to send coverage to Coveralls.io because of a bug in the plugin as mentioned in this
issue scoverage/sbt-coveralls#73.

Let's try downgrading by 1 version to see if it gets fixed.

Downgrade Scoverage too as apparently that needs to be compatible
with our version of Coveralls

Add a note regarding SBT-Scoverage and SBT-coveralls compatibility
  • Loading branch information
lloydmeta committed Dec 20, 2015
1 parent 76ca7ee commit 13bd497
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jdk:
services:
- memcache
script: "sbt clean coverage test"
after_success: "sbt coveralls"
after_success: "sbt coverageReport coveralls"
cache:
directories:
- $HOME/.sbt/0.13
Expand Down
6 changes: 4 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-scalariform" % "1.3.0")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.3")
// SBT-Scoverage version must be compatible with SBT-coveralls version below
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.1")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.3")
// Upgrade when this issue is solved https://github.com/scoverage/sbt-coveralls/issues/73
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0")

0 comments on commit 13bd497

Please sign in to comment.