diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-01 09:25:34 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-01 09:36:21 +0200 |
commit | 2fa3148c3ffa99ca8ad4e02f0eba43275f8c2bec (patch) | |
tree | 539ebe8028d6d5b18f3f2463d67962f6b58c98d3 /sonar-plugin-api | |
parent | 62d70040d096c1fc9eb5554f9d3efe3ea9fce2f5 (diff) | |
download | sonarqube-2fa3148c3ffa99ca8ad4e02f0eba43275f8c2bec.tar.gz sonarqube-2fa3148c3ffa99ca8ad4e02f0eba43275f8c2bec.zip |
SONAR-4713 Fail on unprovisioned project
Add new property to make provisioning mandatory
Turn ProjectReactorValidator into an IoC-managed component
Add check at project scan bootstrap to fail if project does not exist
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index b410c6bc295..9aa3b74b85b 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -465,4 +465,9 @@ public interface CoreProperties { * @since 3.7 */ String DRY_RUN_READ_TIMEOUT_SEC = "sonar.dryRun.readTimeout"; + + /** + * @since 4.0 + */ + String CORE_PREVENT_AUTOMATIC_PROJECT_CREATION = "sonar.preventAutoProjectCreation"; } |