sonar-project.properties 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #
  2. # Copyright (C) 2020 Embedded AMS B.V. - All Rights Reserved
  3. #
  4. # This file is part of Embedded Proto.
  5. #
  6. # Embedded Proto is open source software: you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as published
  8. # by the Free Software Foundation, version 3 of the license.
  9. #
  10. # Embedded Proto is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with Embedded Proto. If not, see <https://www.gnu.org/licenses/>.
  17. #
  18. # For commercial and closed source application please visit:
  19. # <https://EmbeddedProto.com/license/>.
  20. #
  21. # Embedded AMS B.V.
  22. # Info:
  23. # info at EmbeddedProto dot com
  24. #
  25. # Postal address:
  26. # Johan Huizingalaan 763a
  27. # 1066 VH, Amsterdam
  28. # the Netherlands
  29. #
  30. # must be unique in a given SonarQube instance
  31. sonar.projectKey=embeddedams_embeddedproto
  32. sonar.host.url=https://sonarcloud.io
  33. # this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
  34. sonar.projectName=EmbeddedProto
  35. sonar.projectVersion=1.0
  36. sonar.organization=embeddedams
  37. # sonar-bitbucket-plugin
  38. sonar.bitbucket.minSeverity=INFO
  39. sonar.bitbucket.approvalFeatureEnabled=true
  40. sonar.bitbucket.buildStatusEnabled=true
  41. sonar.bitbucket.maxSeverityApprovalLevel=MINOR
  42. # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
  43. # This property is optional if sonar.modules is set.
  44. sonar.sources=src
  45. sonar.tests=test
  46. sonar.exclusions=external/**
  47. sonar.test.exclusions=test/**
  48. # Encoding of the source code. Default is default system encoding
  49. sonar.sourceEncoding=UTF-8
  50. sonar.cfamily.build-wrapper-output=build/test/SonarQube-output
  51. sonar.cfamily.xunit.reportsPath=build/test/
  52. sonar.cfamily.gcov.reportsPath=code_coverage_report/
  53. sonar.cfamily.threads=1
  54. sonar.cfamily.cache.enabled=false