diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-09 12:04:01 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-09 12:04:12 +0200 |
commit | 726c1fa0cfb2d0e27df0ed3de1dbed6ffdaf2377 (patch) | |
tree | af0ff1b672f4d85f343f7b92032c88d4cbe334a4 /sonar-plugin-api | |
parent | ba93d6aaf2577a73e46de7a8b281fd8fd27a439c (diff) | |
download | sonarqube-726c1fa0cfb2d0e27df0ed3de1dbed6ffdaf2377.tar.gz sonarqube-726c1fa0cfb2d0e27df0ed3de1dbed6ffdaf2377.zip |
SONAR-6704 Exclude the scm-stats plugin from preview analysis
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 4 |
1 files changed, 3 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 769c0f521e6..13c47e7ce0d 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 @@ -462,7 +462,9 @@ public interface CoreProperties { * @since 4.0 */ String PREVIEW_EXCLUDE_PLUGINS = "sonar.preview.excludePlugins"; - String PREVIEW_EXCLUDE_PLUGINS_DEFAULT_VALUE = "buildstability,devcockpit,pdfreport,report,views,jira,buildbreaker"; + + // SONAR-6704 add scmstats to the list + String PREVIEW_EXCLUDE_PLUGINS_DEFAULT_VALUE = "buildstability,devcockpit,pdfreport,report,views,jira,buildbreaker,scmstats"; /** * @since 4.0 |