diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2016-07-01 12:35:42 +0200 |
---|---|---|
committer | Julien HENRY <henryju@yahoo.fr> | 2016-07-05 14:00:16 +0200 |
commit | b7343f0f17e5ae2e430b1fa7561986a9df2a107d (patch) | |
tree | 6f81e336dcbb7f9ed67d3dfb5e8644a84a40462b /sonar-plugin-api/src | |
parent | c7206381a3e009e4b19b0844fe1ac732daead2b2 (diff) | |
download | sonarqube-b7343f0f17e5ae2e430b1fa7561986a9df2a107d.tar.gz sonarqube-b7343f0f17e5ae2e430b1fa7561986a9df2a107d.zip |
SONAR-7727 Remove some deprecated properties
Diffstat (limited to 'sonar-plugin-api/src')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 52 | ||||
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBuilder.java | 10 |
2 files changed, 2 insertions, 60 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 5c714dcd320..76d5ae24ca5 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 @@ -75,40 +75,18 @@ public interface CoreProperties { String CATEGORY_CODE_COVERAGE = "codeCoverage"; /** - * @see #SUBCATEGORY_DUPLICATIONS - * @since 2.11 - * @deprecated since 4.0. See http://jira.sonarsource.com/browse/SONAR-4660. Do not forget to remove the properties from core bundles - */ - @Deprecated - String CATEGORY_DUPLICATIONS = "duplications"; - - /** * @since 2.11 */ String CATEGORY_SECURITY = "security"; /** - * @see #SUBCATEGORY_L10N * @since 2.11 - * @deprecated since 4.0. See http://jira.sonarsource.com/browse/SONAR-4660. Do not forget to remove the properties from core bundles + * @deprecated since 6.0 */ @Deprecated - String CATEGORY_L10N = "localization"; - - /** - * @since 2.11 - */ String CATEGORY_JAVA = "java"; /** - * @see #SUBCATEGORY_DIFFERENTIAL_VIEWS - * @since 2.11 - * @deprecated since 4.0. See http://jira.sonarsource.com/browse/SONAR-4660. Do not forget to remove the properties from core bundles - */ - @Deprecated - String CATEGORY_DIFFERENTIAL_VIEWS = "differentialViews"; - - /** * @since 3.3 */ String CATEGORY_EXCLUSIONS = "exclusions"; @@ -176,12 +154,6 @@ public interface CoreProperties { @Deprecated String PROJECT_LANGUAGE_PROPERTY = "sonar.language"; - /** - * @deprecated since 4.3. See http://jira.sonarsource.com/browse/SONAR-5185 - */ - @Deprecated - String DYNAMIC_ANALYSIS_PROPERTY = "sonar.dynamicAnalysis"; - /* Exclusions */ String PROJECT_INCLUSIONS_PROPERTY = "sonar.inclusions"; String PROJECT_EXCLUSIONS_PROPERTY = "sonar.exclusions"; @@ -199,14 +171,6 @@ public interface CoreProperties { /* Sonar Core */ - /** - * @deprecated since 4.1. See http://jira.sonarsource.com/browse/SONAR-4875 - */ - @Deprecated - String CORE_VIOLATION_LOCALE_PROPERTY = "sonar.violationLocale"; - - String CORE_VIOLATION_LOCALE_DEFAULT_VALUE = "en"; - String CORE_FORCE_AUTHENTICATION_PROPERTY = "sonar.forceAuthentication"; boolean CORE_FORCE_AUTHENTICATION_DEFAULT_VALUE = false; String CORE_ALLOW_USERS_TO_SIGNUP_PROPERTY = "sonar.allowUsersToSignUp"; @@ -372,20 +336,6 @@ public interface CoreProperties { String PROFILING_LOG_PROPERTY = "sonar.showProfiling"; /** - * @deprecated replaced in v3.4 by properties specific to languages, for example sonar.java.coveragePlugin - * See http://jira.sonarsource.com/browse/SONARJAVA-39 for more details. - */ - @Deprecated - String CORE_COVERAGE_PLUGIN_PROPERTY = "sonar.core.codeCoveragePlugin"; - - /** - * @since 3.7 - * @deprecated in 4.0 no more used - */ - @Deprecated - String DRY_RUN_READ_TIMEOUT_SEC = "sonar.dryRun.readTimeout"; - - /** * @since 4.0 * @deprecated in 5.1 no more used */ diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBuilder.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBuilder.java index 750e782a4e9..62f16ab0ab8 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBuilder.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBuilder.java @@ -19,9 +19,9 @@ */ package org.sonar.api.batch.bootstrap; -import org.sonar.api.batch.ScannerSide; import org.sonar.api.ExtensionPoint; import org.sonar.api.batch.InstantiationStrategy; +import org.sonar.api.batch.ScannerSide; /** * This extension point allows to change project structure at runtime. It is executed once during task startup. @@ -49,14 +49,6 @@ public abstract class ProjectBuilder { } /** - * Don't inject ProjectReactor as it may not be available - * @deprecated since 3.7 use {@link #ProjectBuilder()} - */ - @Deprecated - protected ProjectBuilder(final ProjectReactor reactor) { - } - - /** * @since 3.7 */ protected ProjectBuilder() { |