We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a847b64 commit d0aa258Copy full SHA for d0aa258
.travis.yml
@@ -1,3 +1,5 @@
1
language: scala
2
scala:
3
- - 2.12.4
+ - 2.12.4
4
+script:
5
+ - sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage
project/plugins.sbt
@@ -4,4 +4,10 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
// web plugins
6
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.0")
7
-addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.0")
+addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.0")
8
+
9
+resolvers += "Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
10
11
+// coverage
12
+addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
13
+addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.12")
0 commit comments