diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-09-13 16:07:23 +0200 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-09-13 18:06:47 +0200 |
commit | a3fd8f33a955deb6aac7485cd84104c471cee35f (patch) | |
tree | 36e7533ec362d887b9b0bd3ae82edd36af9cd830 /src/test/resources/org | |
parent | 6243d134515efad579827d9de80d3db24c4ec65d (diff) | |
download | sonar-scanner-cli-a3fd8f33a955deb6aac7485cd84104c471cee35f.tar.gz sonar-scanner-cli-a3fd8f33a955deb6aac7485cd84104c471cee35f.zip |
SONARPLUGINS-2202 "sonar.projectName" default value is now module ID
Diffstat (limited to 'src/test/resources/org')
2 files changed, 2 insertions, 4 deletions
diff --git a/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-all-in-root/sonar-project.properties b/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-all-in-root/sonar-project.properties index 4e29926..0f06d31 100644 --- a/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-all-in-root/sonar-project.properties +++ b/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-all-in-root/sonar-project.properties @@ -10,8 +10,7 @@ sonar.binaries=target/classes sonar.modules=module1,\ module2 -module1.sonar.projectKey=com.foo.project.module1 -module1.sonar.projectName=Foo Module 1 +# Mandatory properties for module1 are all inferred from the module ID module2.sonar.projectKey=com.foo.project.module2 module2.sonar.projectName=Foo Module 2 diff --git a/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-in-each-module/module1/sonar-project.properties b/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-in-each-module/module1/sonar-project.properties index 460d349..7bace22 100644 --- a/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-in-each-module/module1/sonar-project.properties +++ b/src/test/resources/org/sonar/runner/internal/batch/SonarProjectBuilderTest/multi-module-definitions-in-each-module/module1/sonar-project.properties @@ -1,2 +1 @@ -sonar.projectKey=com.foo.project.module1 -sonar.projectName=Foo Module 1 +# Mandatory properties for module1 are all inferred from the module ID |