diff options
author | Jenkins CI <ci@sonarsource.com> | 2014-10-17 13:54:11 +0200 |
---|---|---|
committer | Jenkins CI <ci@sonarsource.com> | 2014-10-17 13:54:11 +0200 |
commit | b6a72e70fabea3183256ab1866aaeac2d4a0f922 (patch) | |
tree | 8686953ab434e8e9e9a96466e023df5a4dcb5041 /sonar-plugin-api | |
parent | e11d2adecb4abae802e760f54406e973710d6a7c (diff) | |
parent | 4b389949b73baf05e15c007be6ba7ea611a86091 (diff) | |
download | sonarqube-b6a72e70fabea3183256ab1866aaeac2d4a0f922.tar.gz sonarqube-b6a72e70fabea3183256ab1866aaeac2d4a0f922.zip |
Automatic merge from branch-4.5
* origin/branch-4.5:
SONAR-5735 Deprecate "sonar.importSources"
SONAR-5691 Exception messages are shown twice
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; |