blob: 5d916ab417e63c81881a3190cb02dd1f40ebc850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Root project information
sonar.projectKey=com.sonarsource.it.samples:multi-modules-sample
sonar.projectName=Sonar :: Integration Tests :: Multi-modules Sample
sonar.projectVersion=1.0-SNAPSHOT
# Some properties that will be inherited by the modules
sonar.sources=module_a/src2/main/xoo
module_a.sonar.sources=src/main/xoo
module_b.sonar.sources=src/main/xoo
# List of the module identifiers
sonar.modules=module_a, module_b
sonar.working.directory=module_a/target/sonar
module_a.sonar.working.directory=target/sonar
module_b.sonar.working.directory=targetC/sonar
module_a.sonar.projectKey=
module_a.sonar.projectName=Module A
module_b.sonar.projectKey=module_b
module_b.sonar.projectName=Module B
|