diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-10-15 14:05:19 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-10-15 14:06:38 +0200 |
commit | 44acd4b3748df33c4f46b2cf5f265c1c5c1355a0 (patch) | |
tree | 64b5569b5df88507be3fcae19360ceacc5ecef4d /sonar-plugin-api | |
parent | 1ddb0004c19cf4d3f0d8ac54527f16f295fdf161 (diff) | |
download | sonarqube-44acd4b3748df33c4f46b2cf5f265c1c5c1355a0.tar.gz sonarqube-44acd4b3748df33c4f46b2cf5f265c1c5c1355a0.zip |
SONAR-3677 Update some property name/descriptions and messages
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 6 |
1 files changed, 5 insertions, 1 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 f877ab0c798..c256ed45d9b 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 @@ -257,22 +257,26 @@ public interface CoreProperties { * @since 3.4 * @deprecated in 4.0 replaced by {@link CoreProperties#PREVIEW_INCLUDE_PLUGINS} */ + @Deprecated String DRY_RUN_INCLUDE_PLUGINS = "sonar.dryRun.includePlugins"; /** * @since 3.4 * @deprecated in 4.0 replaced by {@link CoreProperties#PREVIEW_INCLUDE_PLUGINS_DEFAULT_VALUE} */ + @Deprecated String DRY_RUN_INCLUDE_PLUGINS_DEFAULT_VALUE = ""; /** * @since 3.4 * @deprecated in 4.0 replaced by {@link CoreProperties#PREVIEW_EXCLUDE_PLUGINS} */ + @Deprecated String DRY_RUN_EXCLUDE_PLUGINS = "sonar.dryRun.excludePlugins"; /** * @since 3.4 * @deprecated in 4.0 replaced by {@link CoreProperties#PREVIEW_EXCLUDE_PLUGINS_DEFAULT_VALUE} */ + @Deprecated String DRY_RUN_EXCLUDE_PLUGINS_DEFAULT_VALUE = "devcockpit,pdfreport,report,scmactivity,views,jira"; /** @@ -445,7 +449,6 @@ public interface CoreProperties { /** * @since 3.4 - * @deprecated in 4.0 replaced by {@link CoreProperties#ANALYSIS_MODE} */ String DRY_RUN = "sonar.dryRun"; @@ -475,6 +478,7 @@ public interface CoreProperties { * @since 3.7 * @deprecated in 4.0 replaced by {@link CoreProperties#PREVIEW_READ_TIMEOUT_SEC} */ + @Deprecated String DRY_RUN_READ_TIMEOUT_SEC = "sonar.dryRun.readTimeout"; /** |