-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonar-project.properties
33 lines (28 loc) · 1.22 KB
/
sonar-project.properties
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
# 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=Ploigos Reference App - Spring Boot Maven JKube
# --- optional ---
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# --- java basic properties ---
sonar.sources=src/main/java/
sonar.java.libraries=target/*.jar
sonar.java.binaries=target/classes/org/eclipse/jkube/maven/sample/spring/boot
sonar.java.test.binaries=target/test-classes//org/eclipse/jkube/maven/sample/spring/boot
# --- java reporting properties ---
#sonar.coverage.jacoco.xmlReportPaths=target/site/jacoco
#sonar.core.codeCoveragePlugin=jacoco