summaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-11-29 10:58:03 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-11-29 10:58:45 +0100
commit9ead868b4282004368bc68b3eebde1899d84faef (patch)
tree413dc4d2f8594737b4731e9b0598d8d4faa72aa7 /sonar-plugin-api
parent8f16fe577c23ae27cf43a3e0c02e96df4eac4354 (diff)
downloadsonarqube-9ead868b4282004368bc68b3eebde1899d84faef.tar.gz
sonarqube-9ead868b4282004368bc68b3eebde1899d84faef.zip
SONAR-4875 Remove the property 'sonar.violationLocale' and so the ability to chose which language should be used to log issue message
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java6
1 files changed, 6 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 a9e07108eeb..c06be276d1d 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
@@ -181,7 +181,13 @@ public interface CoreProperties {
String REUSE_RULES_CONFIGURATION_PROPERTY = "sonar.reuseExistingRulesConfiguration";
/* Sonar Core */
+
+ /**
+ * @deprecated since 4.1. See http://jira.codehaus.org/browse/SONAR-4875
+ */
+ @Deprecated
String CORE_VIOLATION_LOCALE_PROPERTY = "sonar.violationLocale";
+
String CORE_VIOLATION_LOCALE_DEFAULT_VALUE = "en";
String CORE_IMPORT_SOURCES_PROPERTY = "sonar.importSources";
boolean CORE_IMPORT_SOURCES_DEFAULT_VALUE = true;