This repository was archived by the owner on Dec 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsonar-project.properties
47 lines (37 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
sonar.projectKey=multi-language-multi-module-project
sonar.projectName=Multi-Language Multi-Module Test Project
sonar.projectVersion=1.0-SNAPSHOT
# =====================================================
# Meta-data for the project
# =====================================================
sonar.links.homepage=https://github.com/bellingard/multi-language-multi-module-project
sonar.links.ci=https://travis-ci.org/bellingard/multi-language-multi-module-project
sonar.links.scm=https://github.com/bellingard/multi-language-multi-module-project
sonar.links.issue=https://github.com/bellingard/multi-language-multi-module-project/issues
# =====================================================
# Definition of the modules
# =====================================================
sonar.modules=backend,front-php,front-groovy
backend.sonar.projectName=Applicaton Backend
front-groovy.sonar.projectName=Groovy & Flex & JS Web Application
front-php.sonar.projectName=PHP & JS Web Application
# =====================================================
# Properties that will be shared amongst all modules
# =====================================================
# SQ standard properties
sonar.sources=src/main
sonar.tests=src/test
# Properties specific to language plugins:
# - For Java
sonar.junit.reportsPath=reports/java/surefire-reports
sonar.jacoco.reportPath=reports/java/jacoco.exec
sonar.binaries=target/classes
# - For JavaScript
sonar.javascript.lcov.reportPath=reports/js/lcov.dat
# - For PHP (the plugin currently supports only absolute path in the reports, so this test project is not portable)
sonar.php.coverage.reportPath=reports/php/phpunit.coverage.xml
sonar.php.tests.reportPath=reports/php/phpunit.xml
# - For Flex
sonar.flex.cobertura.reportPath=reports/flex/coverage.xml
# - For Groovy
sonar.groovy.cobertura.reportPath=reports/groovy/cobertura.xml