Skip to content

Commit

Permalink
Merge pull request #31 from chirag-ji/develop
Browse files Browse the repository at this point in the history
Version 1.1.2
  • Loading branch information
chirag-ji authored Jun 21, 2023
2 parents 12c034e + 0ea6cc5 commit a1690e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jacotura-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group "io.github.chiragji"
version '1.1.1'
version '1.1.2'
description "Gradle plugin to convert JaCoCo coverage reports to Cobertura coverage reports"

def projectName = 'Gradle Jacotura plugin'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ private void buildCoverage(JacocoReport jacocoReport, CoberturaReport coberturaR
CoberturaMethod cMth = cCls.createNewMethod();
cMth.setName(getCoberturaFriendlyName(jMth.getName()));
cMth.setSignature(jMth.getDescription());
computeRates(cMth, jMth);
List<JacocoLine> methodLines = getMethodLines(jCls.getMethods(), jMth, lines);
methodLines.forEach(jLine -> {
CoberturaLine cLine = cMth.createNewLine();
Expand Down

0 comments on commit a1690e3

Please sign in to comment.