Skip to content

Commit

Permalink
Merge branch 'hotfix/V2.14.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
gquerret committed Feb 22, 2022
2 parents 01f3a6a + 83180f9 commit 9dff422
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion coverage-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.parsers</groupId>
<artifactId>coverage-report</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion database-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.parsers</groupId>
<artifactId>database-parser</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion listing-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.parsers</groupId>
<artifactId>listing-parser</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import java.io.BufferedReader;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
Expand Down Expand Up @@ -54,7 +55,9 @@ public ListingParser(Path path, String relativeName) throws IOException {
"File name shouldn't contain space character - '" + path.toAbsolutePath().toString() + "'");
}
this.relativeName = relativeName;
try (BufferedReader reader = Files.newBufferedReader(path)) {
// Force iso8859-1 encoding so that all crappy characters inserted in the listing will be processed without an exception
// We only care about the last part of the file, which doesn't contain non-ASCII characters
try (BufferedReader reader = Files.newBufferedReader(path, StandardCharsets.ISO_8859_1)) {
parseFile(reader);
}
}
Expand Down
2 changes: 1 addition & 1 deletion openedge-checks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.checks</groupId>
<artifactId>openedge-checks</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion openedge-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.sonar.openedge</groupId>
<artifactId>sonar-openedge-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
<packaging>pom</packaging>

<name>OpenEdge plugin for SonarQube</name>
Expand All @@ -24,7 +24,7 @@
</modules>

<properties>
<cabl.version>2.14.7</cabl.version>
<cabl.version>2.14.8</cabl.version>
<sonarqube.version>7.9.6</sonarqube.version>
<antlr.version>4.9.2</antlr.version>
<guava.version>31.0.1-jre</guava.version>
Expand Down
2 changes: 1 addition & 1 deletion profiler-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.parsers</groupId>
<artifactId>profiler-parser</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion proparse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.parsers</groupId>
<artifactId>proparse</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion rcode-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>eu.rssw</groupId>
<artifactId>sonar-openedge</artifactId>
<version>2.14.7</version>
<version>2.14.8</version>
</parent>
<groupId>eu.rssw.openedge.rcode</groupId>
<artifactId>rcode-reader</artifactId>
Expand Down

0 comments on commit 9dff422

Please sign in to comment.