Skip to content

Commit

Permalink
Set sonar.delphi.installationPath when initializing SonarDelphi
Browse files Browse the repository at this point in the history
  • Loading branch information
fourls committed Mar 20, 2024
1 parent 648b5db commit daa76bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

* DelphiLint now passes SonarDelphi the correct Delphi installation and compiler version when running in Delphi 12.

## [1.0.0] - 2024-03-19

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public Set<Path> getPluginPaths() {

public Map<String, String> getBaseProperties() {
return Map.of(
"sonar.delphi.bds.path", bdsPath,
"sonar.delphi.compiler.version", compilerVersion);
"sonar.delphi.installationPath", bdsPath,
"sonar.delphi.compilerVersion", compilerVersion);
}
}

0 comments on commit daa76bf

Please sign in to comment.