Scala library for parsing coverage reports.
Currently we support Jacoco and Cobertura reports.
Both CoberturaParser and JacocoParser receive the language, the project root, and the file containing the coverage report, producing the Codacy coverage format
Usage:
val reader = new CoberturaParser(Language.Scala, rootProjectDir, coberturaFile)
val report = reader.generateReport()