All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.jproperties.rules.sonarscanner.sonar-scanner-deprecated-properties.html Maven / Gradle / Ivy

The following SonarQube properties are deprecated and should no longer be used:

  • sonar.profile: This property should be removed.
  • sonar.skipDesign: This property should be removed.
  • sonar.showProfiling: sonar.log.level should be used instead.
  • sonar.binaries: sonar.java.binaries should be used instead.
  • sonar.libraries: sonar.java.libraries should be used instead.

Noncompliant Code Example

sonar.libraries=lib
sonar.binaries=bin
sonar.skipDesign=true
sonar.profile=myprofile
sonar.showProfiling=true

Compliant Solution

sonar.java.libraries=lib
sonar.java.binaries=bin
sonar.log.level=DEBUG

See





© 2015 - 2024 Weber Informatics LLC | Privacy Policy