Skip to content

Commit

Permalink
Merge branch 'cit'
Browse files Browse the repository at this point in the history
# Conflicts:
#	groovy-jacoco-previous/pom.xml
  • Loading branch information
pascalporta444 committed Sep 4, 2020
2 parents 2715416 + db7308f commit fc16bfa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion codenarc-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7-CIT-MVN-162-SNAPSHOT</version>
</parent>

<artifactId>sonar-codenarc-converter</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.sonarsource.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7-CIT-MVN-162-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Sonar Groovy</name>
Expand Down
2 changes: 1 addition & 1 deletion sonar-groovy-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.7-SNAPSHOT</version>
<version>1.7-CIT-MVN-162-SNAPSHOT</version>
</parent>

<artifactId>sonar-groovy-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private InputFile getInputFile(ISourceFileCoverage coverage) {
String path = getFileRelativePath(coverage);
InputFile sourceInputFileFromRelativePath =
groovyFileSystem.sourceInputFileFromRelativePath(path);
if (sourceInputFileFromRelativePath == null) {
if (sourceInputFileFromRelativePath == null && path.endsWith(".groovy")) {
JaCoCoExtensions.logger().warn("File not found: " + path);
}
return sourceInputFileFromRelativePath;
Expand Down

0 comments on commit fc16bfa

Please sign in to comment.