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

Commit b2cdeb4

Browse files
author
Daniel Reigada
committed
Bump codacy-api-scala
1 parent b96a328 commit b2cdeb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import sbt._
22

33
object Dependencies {
44

5-
lazy val codacyScalaApi = "com.codacy" %% "codacy-api-scala" % "2.0.4"
5+
lazy val codacyScalaApi = "com.codacy" %% "codacy-api-scala" % "3.0.1"
66
lazy val scalaTest = "org.scalatest" %% "scalatest" % "2.2.4" % "test"
77

88
}

src/main/scala/com/codacy/parsers/implementation/CoberturaParser.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CoberturaParser(val language: Language.Value, val rootProject: File, val c
5151
lineCoverage(file)
5252
}
5353

54-
CoverageReport(language, total, filesCoverage.toSeq)
54+
CoverageReport(total, filesCoverage.toSeq)
5555
}
5656

5757
private def lineCoverage(sourceFilename: String): Option[CoverageFileReport] = {

src/main/scala/com/codacy/parsers/implementation/JacocoParser.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class JacocoParser(val language: Language.Value, val rootProject: File, val cove
3333
}
3434
}
3535

36-
CoverageReport(language, total, filesCoverage)
36+
CoverageReport(total, filesCoverage)
3737
}
3838

3939
private def lineCoverage(sourceFilename: String, file: Node): CoverageFileReport = {

0 commit comments

Comments
 (0)