Releases: sonar-scala/sbt-sonar
v2.3.0
v2.2.1
v2.2.0
Improve compatibility with SonarScala plugin (#117).
This release adds a new setting key (sonarExpectSonarQubeCommunityPlugin
), which allows toggling compatibility between sonar-scala and SonarScala plugins. This change is backwards compatible and the sonarExpectSonarQubeCommunityPlugin
setting is set to true
by default. If you're targeting the SonarScala plugin, toggling this setting to false
changes the default Scoverage and Scapegoat property names, i.e.:
sonar.scala.scoverage.reportPath
changes tosonar.scala.coverage.reportPaths
- and
sonar.scala.scapegoat.reportPath
changes tosonar.scala.scapegoat.reportPaths
v2.1.1
v2.1.0
Allow to use SONAR_HOST_URL
environment variable to define SonarQube instance URL instead of the sonar.host.url
system property. If both values are present, the sonar.host.url
system property takes precedence over the environment variable. (sonar-scanner-api#69)
v2.0.0
Use an embedded sonar-scanner (#34) 🎊.
This version removes the dependency on having the standalone sonar-scanner-cli installed. To upgrade from 1.x please define the sonar.host.url
property explicitly before running the sonarScan
task (see the Execute SonarQube section for more details). If you want to fallback to the default behaviour from 1.x, which makes the plugin call through to the standalone sonar-scanner, you can set the sonarUseSonarScannerCli
setting to true
(see the Fallback mode section for more details).