diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2014-10-17 12:12:17 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2014-10-17 12:12:38 +0200 |
commit | bdf9dacf8492e93e86f55b832b397e74c8205561 (patch) | |
tree | 48094047cf7441e0e402baa6ce977c1eeb8424ba /sonar-plugin-api | |
parent | 32cde0094a41917cdfb3b1496d00f0f3b5d526bf (diff) | |
download | sonarqube-bdf9dacf8492e93e86f55b832b397e74c8205561.tar.gz sonarqube-bdf9dacf8492e93e86f55b832b397e74c8205561.zip |
SONAR-5735 Deprecate "sonar.importSources"
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 4 |
1 files changed, 4 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 ad7cc9a97ac..ac0d98fc03f 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 @@ -193,6 +193,10 @@ public interface CoreProperties { String CORE_VIOLATION_LOCALE_PROPERTY = "sonar.violationLocale"; String CORE_VIOLATION_LOCALE_DEFAULT_VALUE = "en"; + /** + * @deprecated since 4.5.1. + */ + @Deprecated String CORE_IMPORT_SOURCES_PROPERTY = "sonar.importSources"; boolean CORE_IMPORT_SOURCES_DEFAULT_VALUE = true; |