-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
44 lines (37 loc) · 1.46 KB
/
sonar-project.properties
File metadata and controls
44 lines (37 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# The purpose of this version is to test the flow from scanner cli
# Reference as of 08/21/2020: https://docs.sonarqube.org/latest/analysis/analysis-parameters/
#----- Default SonarQube server
# TSSC Config requires the url; this will NOT be used
# sonar.host.url=https://sonarqube-sonarqube.apps.tssc.rht-set.com/
# TSSC will override:
# sonar.projectKey
# sonar.projectVersion
# sonar.working.directory
# TSSC recommendation:
# Set qualitygate wait to true to stop the pipeline
# when the threshold of errors is reached.
# Regardless, see the SonarQube dashboard for details.
sonar.qualitygate.wait=true
# --- optional ---
# Optional defaults to project key,
sonar.projectName=RHVCS Backend Monorepo
# --- optional ---
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
sonar.modules=model,kjar,service
model.sonar.projectName=RHVCS Backend
#model.sonar.sources=model/src/main/java
kjar.sonar.projectName=RHVCS KJAR
#kjar.sonar.sources=kjar/src/main/kava
service.sonar.projectName=RHVCS Backend Service
#service.sonar.sources=service/src/main/java
# --- java basic properties ---
sonar.language=java
sonar.sources=src
sonar.java.libraries=target/*.jar
sonar.java.binaries=target/classes/com/redhat
sonar.java.test.binaries=target/test-classes/com/redhat
sonar.junit.reportPaths=target/surefire-reports
# --- java reporting properties ---
#sonar.coverage.jacoco.xmlReportPaths=target/site/jacoco
#sonar.core.codeCoveragePlugin=jacoco