In the JavaDoc, it's clearly defined how to set a property in SonarQube using org.sonar.api.config.PropertyDefinition
in a plugin, however there is nothing on how to get it.
It seems to not work like System.getProperty(key)
in Java, so, should I declare a new class that implements Configuration
? Is there a way to reach these properties back properly?