-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
19 lines (15 loc) · 713 Bytes
/
Copy pathsonar-project.properties
File metadata and controls
19 lines (15 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Must be unique in a given SonarQube instance
sonar.projectKey=sir-gon_algorithm-exercises-java
sonar.organization="sir-gon"
# This is the name and version displayed in the SonarQube UI.
# Was mandatory prior to SonarQube 6.1.
sonar.projectName=Algorithm Exercises JAVA
sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file.
# Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=algorithm-exercises-java/src/main/java/ae
sonar.coverage.exclusions=**/App.java,**/util/*.java
sonar.coverageReportPaths=algorithm-exercises-java/build/jacoco.xml
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8