sonar-project.properties 714 B

123456789101112131415161718
  1. # must be unique in a given SonarQube instance
  2. sonar.projectKey=ibps:socket:biz
  3. # this is the name displayed in the SonarQube UI
  4. sonar.projectName=ibps:socket:biz
  5. sonar.projectVersion=3.3.7-LC.RELEASE
  6. # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
  7. # Since SonarQube 4.2, this property is optional if sonar.modules is set.
  8. # If not set, SonarQube starts looking for source code from the directory containing
  9. # the sonar-project.properties file.
  10. sonar.sources=src/main/java
  11. sonar.tests=src/test/java
  12. sonar.java.binaries=target/classes
  13. sonar.java.source=1.8
  14. sonar.language=java
  15. # Encoding of the source code. Default is default system encoding
  16. sonar.sourceEncoding=UTF-8