sonar-project.properties 571 B

12345678910111213
  1. # must be unique in a given SonarQube instance
  2. sonar.projectKey=new-api-center
  3. # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
  4. sonar.projectName=new-api-center
  5. sonar.projectVersion=1.0
  6. # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
  7. # This property is optional if sonar.modules is set.
  8. sonar.sources=.
  9. sonar.exclusions=**/test/**,**/target/**
  10. sonar.java.source=1.8
  11. sonar.java.target=1.8
  12. # Encoding of the source code. Default is default system encoding
  13. sonar.sourceEncoding=UTF-8