Ce champ permet de passer des paramètres de configuration à SonarQube. Les paramètres définis ici auront la priorité sur ceux potentiellement définis dans le fichier sonar-project.properties spécifié. Il est même possible de spécifier tous les paramètres de SonarQube ici et de laisser vide le champ "Chemin vers les propriétés du projet"

# required metadata
sonar.projectKey=my:project
sonar.projectName=My project
sonar.projectVersion=1.0

# path to source directories (required)
sonar.sources=srcDir1,srcDir2

# path to test source directories (optional)
sonar.tests=testDir1,testDir2

# path to project binaries (optional), for example directory of Java bytecode
sonar.binaries=binDir

# optional comma-separated list of paths to libraries. Only path to JAR file and path to directory of classes are supported.
sonar.libraries=path/to/library.jar,path/to/classes/dir

# Uncomment this line to analyse a project which is not a java project.
# The value of the property must be the key of the language.
sonar.language=cobol

# Additional parameters
sonar.my.property=value