-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.sonarcloud.properties
56 lines (47 loc) · 1.88 KB
/
.sonarcloud.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# SONAR CLOUD CONFIG
sonar.projectKey=totem-food-service-4787bf24ba181ac258cb520837a657896a92044c
sonar.projectName=totem-food-service
sonar.organization=fiap-tech-challenge-4787bf24ba181ac258cb520837a657896a92044c
sonar.host.url=https://sonarcloud.io/
# SOURCES
sonar.language=java
sonar.sourceEncoding=UTF-8
sonar.java.source=17
sonar.sources=\
totem-food-application/src,\
\ totem-food-backend/src,\
\ totem-food-domain/src,\
\ totem-food-framework/src
sonar.java.libraries=\
totem-food-application/src,\
\ totem-food-backend/src,\
\ totem-food-domain/src,\
\ totem-food-framework/src,\
\ **/target/dependency/*.jar
sonar.java.binaries=\
totem-food-application/src,\
\ totem-food-backend/src,\
\ totem-food-domain/src,\
\ totem-food-framework/src
#Test Report Definition
sonar.coverage.exclusions=\
**/com/totem/food/framework/adapters/out/persistence/mongo/category/entity/**,\
\ **/com/totem/food/framework/adapters/out/persistence/mongo/category/mapper/**,\
\ **/com/totem/food/framework/adapters/out/persistence/mongo/configuration/**,\
\ **/com/totem/food/framework/adapters/out/persistence/mongo/commons/**,\
\ **/com/totem/food/framework/adapters/out/email/config/**,\
\ **/com/totem/food/framework/adapters/out/web/payment/config/**,\
\ **/com/totem/food/framework/config/**,\
\ **/com/totem/food/application/ports/**,\
\ **/com/totem/food/application/ports/in/dtos/**,\
\ **/com/totem/food/application/ports/out/dtos/**\
\ **/com/totem/food/domain/exceptions/**
sonar.cpd.exclusions=\
**/com/totem/food/application/ports/out/persistence/**
sonar.test.inclusions=\
totem-food-application/src/test/**,\
\ totem-food-backend/src/test/**,\
\ totem-food-domain/src/test/**,\
\ totem-food-framework/src/test/**
sonar.coverage.jacoco.xmlReportPaths=target/site/jacoco-aggregate/jacoco.xml
sonar.junit.reportsPath=**/target/surefire-reports/TEST-*.xml