#Configure here general information about the environment, such as SonarQube DB details for example 2 #No information about specific project should appear here 3 4 #----- Default SonarQube server 5 sonar.host.url=http://192.168.0.91:9000 6 7 #----- PostgreSQL 8 #sonar.jdbc.url=jdbc:postgresql://localhost/sonar 9 10 #----- MySQL 11 sonar.jdbc.url=jdbc:mysql://127.0.0.1:3306/sonar?useUnicode=true&characterEncoding=utf8 12 13 #----- Oracle 14 #sonar.jdbc.url=jdbc:oracle:thin:@localhost/XE 15 16 #----- Microsoft SQLServer 17 #sonar.jdbc.url=jdbc:jtds:sqlserver://localhost/sonar;SelectMethod=Cursor 18 19 #----- Global database settings 20 sonar.jdbc.username=sonar 21 sonar.jdbc.password=Sonar_1234 22 23 #----- Default source code encoding 24 #sonar.sourceEncoding=UTF-8 25 26 #----- Security (when 'sonar.forceAuthentication' is set to 'true') 27 sonar.login=admin 28 sonar.password=admin
# must be unique in a given SonarQube instance sonar.projectKey=my:project # this is the name displayed in the SonarQube UI sonar.projectName=My project sonar.projectVersion=1.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. # Since SonarQube 4.2, this property is optional if sonar.modules is set. # If not set, SonarQube starts looking for source code from the directory containing # the sonar-project.properties file. sonar.sources=. # Encoding of the source code. Default is default system encoding #sonar.sourceEncoding=UTF-8