diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-06-27 15:12:25 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-06-27 15:25:31 +0200 |
commit | ee231271cf60272f2e10dc6eeba37e0cc852e49a (patch) | |
tree | f1e3828474a86213f60cbf336ac1f96c2592a32b /sonar-batch/src/main/java/org/sonar | |
parent | b6987ffdf12581a5c4240807825a1901b02a4502 (diff) | |
download | sonarqube-ee231271cf60272f2e10dc6eeba37e0cc852e49a.tar.gz sonarqube-ee231271cf60272f2e10dc6eeba37e0cc852e49a.zip |
SONAR-4397 Minor label changes and default groups for dryrun and scan
Diffstat (limited to 'sonar-batch/src/main/java/org/sonar')
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java | 2 | ||||
-rw-r--r-- | sonar-batch/src/main/java/org/sonar/batch/scan/ModuleSettings.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java index fc2faf0a343..c4fc318d3fe 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java +++ b/sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchSettings.java @@ -140,7 +140,7 @@ public class BatchSettings extends Settings { protected void doOnGetProperties(String key) { if (dryRun && key.endsWith(".secured") && !key.contains(".license")) { throw new SonarException("Access to the secured property '" + key - + "' is not possible in local (dry run) SonarQube analysis. The SonarQube plugin accessing to this property must be deactivated in dry run mode."); + + "' is not possible in local (dry run) SonarQube analysis. The SonarQube plugin which requires this property must be deactivated in dry run mode."); } } } diff --git a/sonar-batch/src/main/java/org/sonar/batch/scan/ModuleSettings.java b/sonar-batch/src/main/java/org/sonar/batch/scan/ModuleSettings.java index bae7e8e69ff..0b37d00077c 100644 --- a/sonar-batch/src/main/java/org/sonar/batch/scan/ModuleSettings.java +++ b/sonar-batch/src/main/java/org/sonar/batch/scan/ModuleSettings.java @@ -114,7 +114,7 @@ public class ModuleSettings extends Settings { protected void doOnGetProperties(String key) { if (this.dryRun && key.endsWith(".secured") && !key.contains(".license")) { throw new SonarException("Access to the secured property '" + key - + "' is not possible in local (dry run) SonarQube analysis. The SonarQube plugin accessing to this property must be deactivated in dry run mode."); + + "' is not possible in local (dry run) SonarQube analysis. The SonarQube plugin which requires this property must be deactivated in dry run mode."); } } } |